tldr # zip(*iterables) = aggregate elements from two or more iterables (list, tuples, sets, etc.) # creates a zip object with paired elements stored in tuples for each element usernames = ["Dude", "Bro", "Mister"] passwords = ("p@ssword", "abc123", "guest") login_dates = ["1/1/2021","1/2/2021","1/3/2021"] # -------------------------------------- users = list(zip(usernames,passwords)) for i in users: print(i) # -------------------------------------- users = dict(zip(usernames,passwords)) for key,value in users.items(): print(key+" : "+value) # -------------------------------------- users = zip(usernames,passwords,login_dates) for i in users: print(i) # --------------------------------------
tldr
# zip(*iterables) = aggregate elements from two or more iterables (list, tuples, sets, etc.)
# creates a zip object with paired elements stored in tuples for each element
usernames = ["Dude", "Bro", "Mister"]
passwords = ("p@ssword", "abc123", "guest")
login_dates = ["1/1/2021","1/2/2021","1/3/2021"]
# --------------------------------------
users = list(zip(usernames,passwords))
for i in users:
print(i)
# --------------------------------------
users = dict(zip(usernames,passwords))
for key,value in users.items():
print(key+" : "+value)
# --------------------------------------
users = zip(usernames,passwords,login_dates)
for i in users:
print(i)
# --------------------------------------
👍
I hope youtube algorithm will listen to my prayers, another great tutorial thx !!!
Zip() function is really cool - but hard one to grasp.
i haven´t watched this video yet, but thank you for all the others and this upcoming as well❤
Some very sECure pAsswOrds-
always start my day booting up vscode and watching your videos to study
Make a combined full python tutorial. It will help.
Really cool function
Exactly three years ago this video was published and I am watching it now.
You are like stack overflow but in youtube
Thank you bro! 🙏
good video i will now proceed to make a neural network with this new gained information
Wow!
ok, ty
شكرا جزيلا
ty
Thank you!
thx 4 vid bro !
Thanks Bro Code!
thanks :)
meow~!😽
tHANK YOU BRO!
best channel ever
Bro is great