Answer:
name = input("Enter a name, type Nope to end loop: ")
while (name != "Nope"):
print("Nice to meet you " + name)
name = input("Enter a name, type Nope to end loop: ")
print("Done")
Step-by-step explanation:
It works on python/Edhesive perfectly!