🐍 data types, variables & constants
🐍 data types, variables & constants
wholeNumber = 10 # The variable wholeNumber has been assigned the integer value 10
decimalNumber = 1.2 # The variable decimalNumber has been assigned the float value 1.2
word = "hello" # The variable word has been assigned the string value "hello"
letter = "a" # The variable letter has been assigned the character value "a"
switch = True # The varaible switch has been assigned the boolean value True