/
Alex_Ural
/
python-basics-exercises
Обзор
Документация
Войти
/
Alex_Ural
/
python-basics-exercises
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
ch03-first-python-program/3-create-a-variable.py
15 строк
347 B
David Amos
Cleanup
04 дек 2018, 07:58
04 дек 2018, 07:58
f6a07c9
Код
Авторство
О чём код?
# 3.3 - Create a Variable # Solutions to review exercies # Exercise 3 (exercises 1 and 2 are done in interactive window) # This solution works for Exercises 1 and 2 by typing the same lines into the # interactive window. # Display a string directly print("hello") # Display the contents of a string variable my_string = "hi" print(my_string)