Ejemplo 1: cómo crear una variable en python
variable1 = "value" # string
variable2 = 1000000 # integer
variable3 = 10000.0 # real/float
variable4 = True # boolean: True or False
Ejemplo 2: Python declare int
x = 5
print(type(x))
# Output: <class 'int'>
Ejemplo 3: variables en python
x = 5
y = "John"
print(x)
print(y)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)