“variables de pitón” Código de respuesta

Variables en Python

Simple terms: a variable is a box that you can put stuff in it such as
strings int booleans
Encouraging Elk

Arrays Python

array = [1, 2, 3, 4]

array.append(5)

for i in array:
  print(i)
Grumpy Goat

Variables de pitón

name=input('What is your name')
email=input('what is your email')
print(f"Hi {name}! We will be contacting you shortly at {email}")
Crazy Cottonmouth

Cómo crear una variable en Python

variable1 = "Hello"
variable2 = 13
variable3 = False
TheCoder1001

Variables de pitón

x = "Jack"
y = 110
print(x)
print(y)
Javasper

variables de pitón

name="John"
print("Hello "+name)
Puzzled Peccary

Respuestas similares a “variables de pitón”

Preguntas similares a “variables de pitón”

Más respuestas relacionadas con “variables de pitón” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código