-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoking
More file actions
36 lines (22 loc) · 890 Bytes
/
Copy pathjoking
File metadata and controls
36 lines (22 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
song = input("Please enter the name of a song (or press Enter to skip):") or None
print('You chose: ' + song)
while song is True:
your_name = song
your_name = input('enter your name please: ')
print('hello ' + your_name + ' we wanted to give you a call about your cars extended warranty! ')
# now i am going put some code in line 10 that will be inputs and loop
gender = input('what is your gender? ')
def get_gender(gender):
if gender.lower() == 'm':
return 'male'
elif gender.lower() == 'f':
return 'female'
else:
return 'unknown'
user_gender = get_gender(gender)
if gender.lower() == 'male':
print('you are straighter than a pencil! ')
if gender.lower() == 'female':
print('you will forever catch and stay submissive night & day!')
name = input('what is your name? ')
print("welcome, " + name + "! you are already gay")