declaring type of variable in python code example

Example 1: python how to write a variable

stringtext = 'lol' #One version of a string
stringtext2 = "xD" #You can also use quotes.
integer = 2 #An integer
float = 4.5 #A float
boolean = True #Can be True or False

Example 2: python variables

#Varibles Guide:
a = 5 #NUMBER
b = "Varibles!" #STRING
c = True #BOOLEN  Hey, this is an edit, sorry for having it as true not True, caps matter.
d = False #BOOLEN Hey, this is an edit, sorry for having it as false not False, caps matter.