🐍 Variables
Normal Variables
user_name = "Iron Man"
age = 42Multi Variables
name, age, is_human = "Tony", 21, TrueConstant
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