dy4 assignment.py 911 B

12345678910111213141516171819202122232425262728293031323334353637
  1. First_name = "Paul"
  2. Last_name = "Mahiva"
  3. AGE = 19
  4. Height = 1.73
  5. Course = "Information Technology"
  6. University = "JKUAT"
  7. Year_of_study = 2
  8. Favourite_coding_language = "Python"
  9. Dream_company = "Google"
  10. Dream_job = "Software Engineer"
  11. Number_of_siblings = 0
  12. Owns_a_laptop = True
  13. Has_programming_experience = True
  14. Married = False
  15. Years_of_experience = 1
  16. Country_of_residence = "Kenya"
  17. Weight = 70
  18. Hobbies = "Swimming, Reading, Coding"
  19. print(type(First_name))
  20. print(type(Last_name))
  21. print(type(AGE))
  22. print(type(Height))
  23. print(type(Course))
  24. print(type(University))
  25. print(type(Year_of_study))
  26. print(type(Favourite_coding_language))
  27. print(type(Dream_company))
  28. print(type(Dream_job))
  29. print(type(Number_of_siblings))
  30. print(type(Owns_a_laptop))
  31. print(type(Has_programming_experience))
  32. print(type(Married))
  33. print(type(Years_of_experience))
  34. print(type(Country_of_residence))
  35. print(type(Weight))
  36. print(type(Hobbies))