My task right now is to append two list together. Of course I know that I can do:
Names = ["Samson", "Daniel", "Jason", "Delion"]
Ages = [16, 18, 34, 27]
Names.extend(age)
However, what i am attempting to do is print these lists in the format of:
Samson 16
Daniel 18
Jason 34
Delion 27
With my current attempt, all ive been able to do is print in the format:
Samson, Daniel, Jason, Delion, 16, 18, 34, 27
Greatly appreciated if I could get some sort of help on how to do this.