7. Lectura y tarea¶
9
string = input("Escribe un texto: ")
print(string)
n = int(input("Ingrese un número entero: "))
print(n)
y = float(input("Ingrese un número en punto flotante: "))
print(y)
x = eval(input("Ingrese una expresión matemática: "))
print(x)
Activity: 7.1 ActiveCode (ac_l40_7)
You have attempted 1 of 2 activities on this page