6 lines
132 B
Python
6 lines
132 B
Python
|
name = input('What is your name?')
|
||
|
|
||
|
if (str.lower(name) == 'jacob'):
|
||
|
print('You\'re cool!')
|
||
|
else:
|
||
|
print('Nice to meet you!')
|