types of variables:
- variable - changable, just a variable like in math that can equal whatever and be used as what it equals.
- constant - variable but cannot be changed
heres how variables work. variables are things that equal things. in python, we can display this like:
trashcontent = "brainrot"
Another way we can use this is with printing. Like so:
trashcontent = "brainrot"
print(trashcontent)
brainrot
thats all. i dont know how to make a constant myself but constants are kinda useless.