Today I’ve covered some of the data types in python I will just give each type and an example of what it might look like.
Integer – 5
Float – 5.3
String – “Hello”
Boolean(True or false) – True
You can also use an escape character to add quotes within a string
Code:
print(“\”This is in quotations\””)
Result:
“This is in quotations”