🐍 Variables

variables

Normal Variables

user_name = "Iron Man"
age = 42

Multi Variables

name, age, is_human = "Tony", 21, True

Constant

There are no real constants like in Java, instead its more as an sign for the coder that he shouldn’t change this variable

BASE_DIR = /home/ironman

**_dunder_ **

Double Underscore Variables are special ones that are automatically generated by python to give meta data about the runtime

__file__ → path to the current file being executed