Advertisement
teslariu

template1

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