ch03
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
people = ['Nick', 'Rick', 'Roger', 'Syd']
|
||||
ages = [23, 24, 23, 21]
|
||||
for position in range(len(people)):
|
||||
person = people[position]
|
||||
age = ages[position]
|
||||
print(person, age)
|
||||
Reference in New Issue
Block a user