Skip to content

Commit f956d44

Browse files
committed
add any in python
1 parent c2b61bd commit f956d44

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

python-tutorials/anyinpython.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
names = ["Alestan", "Barbara", "Ariane"]
2+
age = [26, 23, 23]
3+
hobby = ["Games", "Series", "Filmes"]
4+
5+
z = zip(names, age, hobby)
6+
7+
for n, a, h in z:
8+
print(n, a ,h)

0 commit comments

Comments
 (0)