Day 3 - Few other Variables
Apart from string
or text type of variable we have few other types of variable available. Some of the important ones are mentioned below.
Type | Keyword |
---|---|
String | str |
Whole Number | int |
Number with decimal | float |
Boolean (True/False) | bool |
Watch the video
Day 3 - Exercise
- Declare a variable of type
str
print the value and type. - Declare a variable of type
int
print the value and type. - Declare a variable of type
float
print the value and type. - Declare a variable of type
bool
print the value and type.