Practice
- What is the datatype for each of the following?
- 3.14
- 'hero'
- "graduate"
- -10
- input("What is your name?")
- input("What is your age?")
- [1, 2, 3]
- What is the datatype and value for each of the following?
- 3 < 4
- 'hello' > 'goodbye'
- 'talk' < 'much'
- [1,2,3] + [4,5,6]
- 5 / 2
- 5 // 2
- 5 % 2
- 'three' * 2