Respuesta :

Answer:

user_name = input("Please enter a name or type Nope to terminate the program: ")

while( user_name != "Nope" ):

   print("Nice to meet you ", user_name )

   user_name = input("Please enter a name or type Nope to terminate the program: ")

Explanation:

Get the name from user as an input and store it in the user_name variable.

Run a while loop until user_name is not equal to the value of Nope.

Inside the while loop, display the name of user and repeat the question until user types Nope.

The program that asks the user for a name, and then prints a message is as follows:

name = input("what is your name or type NOPE to terminate: ")

while name != "NOPE":

    print(f"nice to meet you {name}")

    name = input("what is your name or type NOPE to terminate: ")

Code explanation

The code is written in python.

  • The variable "name" is used to store the users input. He might input his name or "NOPE" to terminate.
  • Then we used a while loop to check if the user input NOPE.
  • Then, we print nice to meet you "users input"
  • Finally, we ask the use for another name if he inputs his name the first time.

learn more on python here: https://brainly.com/question/18129358

Ver imagen vintechnology
Ver imagen vintechnology