Python Tutorial - Assigning and using variables

preview_player
Показать описание

This is an excerpt from "Programming Foundations: Fundamentals," a course on LinkedIn Learning taught by Annyce Davis. Annyce Davis is an engineering leader, international conference speaker, Google Developer Expert, and author.

00:00 - Introduction to variables and data types
03:21 - Variables across languages

Programming Foundations: Fundamentals

#Python
#HowTo
#LinkedIn
Рекомендации по теме
Комментарии
Автор

age = 36

print(age)

>>> print(age)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'age' is not defined


mikelermanmusic