Edhesive 4.1
Write a program that asks the user to enter a name, and then prints Nice to meet you NAME. Your program should repeat these steps until the user inputs Nope.
Sample Run:
Please enter a name: (Nope to end) Antonio
Nice to meet you Antonio
Please enter a name: (Nope to end) Jonathan
Nice to meet you Jonathan
Please enter a name: (Nope to end) Tyler
Nice to meet you Tyler
Please enter a name: (Nope to end) Brianne
Nice to meet you Brianne
Please enter a name: (Nope to end) Nope
Answers
Answered by
1
Answer:
this is a comment
#this program is in python
name=input("enter your name:")
for i in name:
if(i=="nope"):
break
else:
print("nice to meet you",name)
Explanation:
please mark brainlist answer
Answered by
0
Answer:
follow krr do
Similar questions