Contenu du cours
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)
Tout était clair ?
Merci pour vos commentaires !
Section 1. Chapitre 6