| 1234567891011121314151617181920 |
- firstname="Paul"
- lastname="Mahiva"
- age=19
- height=173
- weight=70
- uni="JKUAT"
- course="Information Technology"
- def myfunc():
- global course
- course="Computer Science"
- myfunc()
- print("FIRST NAME : ", firstname)
- print("LAST NAME : ", lastname)
- print("AGE : ", age)
- print("HEIGHT : ", height)
- print("WEIGHT : ", weight)
- print("UNI : ", uni)
- print("COURSE : ", course)
|