Show Menu
Cheatography

Python Variables Cheat Sheet (DRAFT) by

Everything about Python variables

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Python­ Va­ria­ble­s –­ Basics

Python Variables Cheat Sheet Variables are containers for storing data values.
Python creates variables when you assign them.
Quick Reference Use this sheet to remember how Python handles variables, naming, scope, and output.
 

Creating Variables

Creating Variables Python has no variable declar­ation command.
A variable is created when assigned.
x = 5

y = "­Joh­n"

print(x)

print(y)
 

Dynamic Typing

Dynamic Typing Variables can change type after assign­ment.
x = 4
int
x = "­Sal­ly"
str
print(x)