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