| 12345678910111213141516171819202122232425262728293031323334353637 |
- First_name = "Paul"
- Last_name = "Mahiva"
- AGE = 19
- Height = 1.73
- Course = "Information Technology"
- University = "JKUAT"
- Year_of_study = 2
- Favourite_coding_language = "Python"
- Dream_company = "Google"
- Dream_job = "Software Engineer"
- Number_of_siblings = 0
- Owns_a_laptop = True
- Has_programming_experience = True
- Married = False
- Years_of_experience = 1
- Country_of_residence = "Kenya"
- Weight = 70
- Hobbies = "Swimming, Reading, Coding"
- print(type(First_name))
- print(type(Last_name))
- print(type(AGE))
- print(type(Height))
- print(type(Course))
- print(type(University))
- print(type(Year_of_study))
- print(type(Favourite_coding_language))
- print(type(Dream_company))
- print(type(Dream_job))
- print(type(Number_of_siblings))
- print(type(Owns_a_laptop))
- print(type(Has_programming_experience))
- print(type(Married))
- print(type(Years_of_experience))
- print(type(Country_of_residence))
- print(type(Weight))
- print(type(Hobbies))
|