“Переменные Python” Ответ

переменные в Python

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

Массивы Python

array = [1, 2, 3, 4]

array.append(5)

for i in array:
  print(i)
Grumpy Goat

Переменные 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

Как создать переменную в Python

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

Переменные Python

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

Переменные Python

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

Ответы похожие на “Переменные Python”

Вопросы похожие на “Переменные Python”

Больше похожих ответов на “Переменные Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования