#Save the below code as python file and execute to see output.
# 1. Add a variable and assign datatype int
myInt = 5
print(myInt)
# 2. Add a variable and assign datatype float
myFloat = 5.5
print(myFloat)
# 3. Add a variable and assign datatype boolean
myBool = True
print(myBool)
# 1. Add a variable and assign datatype int
myInt = 5
print(myInt)
# 2. Add a variable and assign datatype float
myFloat = 5.5
print(myFloat)
# 3. Add a variable and assign datatype boolean
myBool = True
print(myBool)
No comments:
Post a Comment