teslariu

sin menu

Jun 14th, 2021
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.39 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. while True:
  5.    
  6.     ###############################
  7.     nombre = input("Ingrese su nombre: ")
  8.     print(f"Hola {nombre}")
  9.     ####################################
  10.    
  11.     opcion = input("Presione cualquier tecla para continuar o '9' para salir: ")
  12.     if opcion == "9":
  13.         print("Gracias por usar este programa...")
  14.         break
Advertisement
Add Comment
Please, Sign In to add comment