Donnerstagabend

This commit is contained in:
2022-11-24 17:59:17 +01:00
parent 20066fe48d
commit aea7c693d6
7 changed files with 100 additions and 11 deletions

7
Donnerstag/check_zip.py Normal file
View File

@@ -0,0 +1,7 @@
it1 = range(5)
it2 = range(100,105)
for a, b in zip(it1, it2):
print(a)
print('-' * 20)
print(b)