Viewing profile — jppbkm
jppbkm
HN member- Joined
- Wed, Jul 12, 2023, 11:30 AM UTC
- HN karma
- 1
- Public activity
- 1 items
- HN profile
- View on Hacker News ↗
About jppbkm
No profile information was provided.
Recent public activity
-
comment
Comment #36693048
Aww, zip is great! for x,y in zip(['a', 'b', 'c'], ['1', '2', '3']): print(x + y) >>'a1' >>'b2' >>'c3' Usually you just use it to group two items you're iterating through that are …