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
strprint the value and type. - Declare a variable of type
intprint the value and type. - Declare a variable of type
floatprint the value and type. - Declare a variable of type
boolprint the value and type.