aboutme.py 401 B

1234567891011121314151617181920
  1. firstname="Paul"
  2. lastname="Mahiva"
  3. age=19
  4. height=173
  5. weight=70
  6. uni="JKUAT"
  7. course="Information Technology"
  8. def myfunc():
  9. global course
  10. course="Computer Science"
  11. myfunc()
  12. print("FIRST NAME : ", firstname)
  13. print("LAST NAME : ", lastname)
  14. print("AGE : ", age)
  15. print("HEIGHT : ", height)
  16. print("WEIGHT : ", weight)
  17. print("UNI : ", uni)
  18. print("COURSE : ", course)