Live data from Hacker News

Viewing profile — jppbkm

jppbkm

HN member
Joined
Wed, Jul 12, 2023, 11:30 AM UTC
HN karma
1
Public activity
1 items

About jppbkm

No profile information was provided.

Recent public activity

  1. 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 …