Ejemplo 1: declarar variables en python
my_name = "your name here "# you can add perenthisis
print(my_name)
Ejemplo 2: Python cómo escribir una variable
stringtext = 'lol' #One version of a string
stringtext2 = "xD" #You can also use quotes.
integer = 2 #An integer
float = 4.5 #A float
boolean = True #Can be True or False
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)