clubs:python_club:python_club_variables
Home | clubs :: cloud club :: python_club :: 3D-Printing | projects :: Proxmox | Kubernetes | scripting | utilities | games
Table of Contents
Python Club Topics - Variables
Questions
- What a variables?
Variables
- Created only when a value is assigned
x = 10
- print the variable ( to the screen )
print(x)
- Create a new variable: y
y = "Coding" print(y)
Capitalization Matters
- These are different variables
name = "Mike" Name = "Mike D" NAME = "Mike D in the place to be" print(NAME) print(name) print(Name)
clubs/python_club/python_club_variables.txt · Last modified: by 127.0.0.1
