~Variables & Data types:
It represents the kind of value that tells what operations can be
performed on a particular data. Since everything is an object in
Python programming, data types are actually classes and variables
are instance (object) of these classes.
character_name = "John"
print(character_name)
print(type(character_name))
character_age = "75"
print(character_age)
print(type(character_age))
is_male = True
print("Hi my name is " + character_name + ", I like to play basketball")
print("I am " + character_age + " years old, but, still enjoy playing this sport.")
charater_name1 = "Mike"
character_age1 = "75"
is_female = False
print("His friend " + charater_name1 + " also enjoys playing basketball")
print("YET! Again he's also " + character_age1 + ".")
Boolean Value
The boolean gives us two paths either true or false, if the
password was wrong the computer will return false, however
if it is right then the computer will generate true