Advertisement
teslariu

rewer

Aug 28th, 2021
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.48 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. '''
  5. 1 condicional: if, switch 2 bucles: while, repeat foreach for, do while
  6.  
  7. python: if while for
  8. '''
  9. a = 2
  10.  
  11. while True:
  12.    
  13.     #######  mi script  ###############
  14.     temp = float(input("Ingrese la temp en ºC: "))
  15.     print(f"Temperatura: {temp*1.8+32}ºF")
  16.     ###################################
  17.    
  18.     opcion = input("Presione cualquier tecla (o '1' para salir): ")
  19.     if opcion == "1":
  20.         print("Gracias por usar este programa...")
  21.         break
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement