Course Content
Introduction to Data Analysis in Python
Introduction to Data Analysis in Python
Variables
Variables are used to store information inside the program.
To assign value to a variable, please use =
sign like so:
number = 5 string = 'cat' print(number, string)
Everything was clear?
Thanks for your feedback!
Section 1. Chapter 6