print ('Why hello there!')
print ('\n')
print ('It seems I have been given the ability to process more complex commands...')
print ('\n')
yourname1 = input('Would you mind telling me your name?')
print ('\n')
print ('\n')
print ('Thank you,', yourname1,',' 'who is that friend of yours?')
print ('\n')
print ('\n')
yourname2 = input('Yes you! Tell me your name please.')
print ('\n')
print ('\n')
print ("Wonderful, pleasure to meet you,", yourname1,',' "and you,", yourname2)
print ('\n')
print ('\n')
print ('Would you two humor me and give me your individual birth dates?')
print ('\n')
print ('\n')
print (yourname1)
snum = input('What is your date of birth (YYYYMMDD)?:')
birth1 = int(snum)
print ('\n')
print ('\n')
print (yourname2)
snum = input('What is your date of birth (YYYYMMDD)?:')
birth2 = int(snum)
print ('\n')
print ('\n')
print (birth1)
print ('\n')
print ('\n')
print (birth2)
After creating a "Mad Lib Generator" and several other trivial programs in Python 3.1, I have been asked to create my first "Smart Program" - one that makes decisions for itself...
As you may or may not have noticed, the code above is my first attempt at said "Smart Program"
(The final program being one which can analyze two 8-digit birth dates, return them in proper MM/DD/YYYY format, and tell which of the two individuals is older - Then be given each person's savings amount in USD, convert them to British pounds, and return with who is the richest of the two)
Clearly, I am in that stage of programming preparatory to even "the beginner".
I am a fetal python.
That said, I would greatly appreciate any assistance in hurtling over this "confusing" problem.