Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
My first program
#16
Hey, I added some thing to your program.

Code:
import os
print 'Welcome to your interview :)'
print 'You will be answered a series of questions through this examine.'

while True:
    first = raw_input("\nPlease enter your gender: ")

    if first == "male":
        print "\nme too!"
        break
    elif first == "female":
        print "\nthat's what she said :p"
        break
    else:
        print "\nhey that's not a gender!"



second = int(raw_input("\nPlease enter the number of pets you own: "))
if second < 5:
    print "\nYou aren't crazy! :p"
elif second > 5:
    print "\nYou are borderline crazy, or crazy. :P"
elif second == 5:
    print "\nThat's quite a lot!"


print "\nYou said you are a: "+first

print "\nYou said you have:  "+str(second)+" pets"

os.system("PAUSE")

First, i moved the import os to the top. you should have all imports at the top of the script.

Next, I added a loop, so if somebody does not answer with 'male' or 'female' it askes again.

Finally, when asking about the number of pets, you have values for more and less than 5, but you do not have one for equal to 5, so I added one.

Nice beginning project Oui
[Image: idgjkO.png]
Reply


Messages In This Thread
My first program - by Reality - 08-06-2010, 01:06 AM
RE: My first program - by Reality - 08-06-2010, 06:31 AM
RE: My first program - by Daniel Faraday - 08-09-2010, 09:56 PM
RE: My first program - by Kyuubi - 08-09-2010, 09:38 PM
RE: My first program - by Reality - 08-09-2010, 10:06 PM
RE: My first program - by Daniel Faraday - 08-09-2010, 10:17 PM
RE: My first program - by Reality - 08-09-2010, 10:19 PM
RE: My first program - by XACTLYSIN - 08-09-2010, 11:08 PM
RE: My first program - by Reality - 08-11-2010, 01:23 PM
RE: My first program - by Daniel Faraday - 08-11-2010, 01:45 PM
RE: My first program - by Reality - 08-11-2010, 02:07 PM
RE: My first program - by Daniel Faraday - 08-11-2010, 02:10 PM
RE: My first program - by Deities - 08-12-2010, 07:23 AM
RE: My first program - by Reality - 08-12-2010, 01:16 PM
RE: My first program - by ucrazii - 08-13-2010, 10:12 AM
RE: My first program - by xerotic - 08-13-2010, 10:50 AM
RE: My first program - by Reality - 08-13-2010, 07:38 PM
RE: My first program - by Daniel Faraday - 08-13-2010, 07:51 PM
RE: My first program - by Reality - 08-13-2010, 07:57 PM
RE: My first program - by Daniel Faraday - 08-13-2010, 07:58 PM
RE: My first program - by Reality - 08-13-2010, 08:02 PM
RE: My first program - by Daniel Faraday - 08-13-2010, 08:08 PM
RE: My first program - by Reality - 08-13-2010, 08:30 PM
RE: My first program - by Daniel Faraday - 08-13-2010, 08:49 PM
RE: My first program - by Reality - 08-13-2010, 08:51 PM
RE: My first program - by Bursihido - 12-13-2010, 11:01 PM

Forum Jump:


Users browsing this thread: 2 Guest(s)