“variables python” Réponses codées

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 python

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

Comment créer une variable dans Python

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

Variables python

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

variables python

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

Réponses similaires à “variables python”

Questions similaires à “variables python”

Plus de réponses similaires à “variables python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code