Advertisement
silver2row

itertools_count.py

Jan 21st, 2023
1,147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. from itertools import *
  2.  
  3. for i in zip(count(1), ['a', 'b', ('c' * 4)]):
  4.     print(i)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement