0
Hey! [SOLVED]
How do I code a python interaction? Like I write input Hey wazzup and then the output says Hey imma good
7 ответов
+ 2
user_input = input()
text_template = 'Hey wazzup'
if user_input == text_template:
print('Hey imma good')
else:
print('Hello, dude!')
+ 1
Yaroslav Vernigora Thanks my problem is now solved!
+ 1
a = input("Enter the greetings: ")
if("hey whatzzup" in a):
print("Hey imma good")
else:
print("fine bro")
+ 1
MikroMick you should thank him too. he tried hard for you 😉
+ 1
Yaroslav Vernigora Ooookkk
+ 1
Thanks Anonymous You did it great.
0
Sorry Anonymous the problem is already solved (with one answer!)