Hey
As my title sais having issues getting characters (like names and such ) in my code. I can only get numbers
Any help would be appreaciated
print ("Program 2: Using Inputs")
#prints the title
print ("Author: Benoit Labelle")
#prints the author's name
print ("ID: 3065521")
#prints the authors id number
loop=1
choice=0
while loop==1:
print "This program will add your first name to your last name, and then multiply your two favorite numbers in a select order"
print "Option 1: First name, Last Name, Numbers"
print "Option 2: Numbers, First Name Last Name"
print "Option 3: Exit"
choice = int(raw_input("Choose your option: ").strip())
if choice ==1:
fn=raw_input("please select your first name")
ln=raw_input("Please select your Last Name")
fnbr=input("please select your favorite number")
sfnbr=input("please select your second favorite number")
print fn, ln
print fnbr * sfnbr
elif choice==2:
fnbr=input("please select your favorite number")
sfnbr=input("please select your second favorite number")
fn=raw_input("please select your first name")
ln=raw_input("Please select your Last Name")
print fnbr * sfnbr
print fn, ln
elif choice ==
3: loop = 0
print "thank you"
# fn = first name
#ln = last name
# fnbr = favorite number
# sfnbr = secodn favorite number
Any help would be greatly appreaciated, with explanations why so i dont make this stupid mistake again
Thanks
Ben
"live life at it's fullest"