Python Programming Tutorial - 19 - My trip to Walmart and Sets

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

Says "I don't even show my face"...face is in top-right corner. 10/10

djleisheng
Автор

It's an absolute pleasure watching your tutorials, keep it up!

night
Автор

Funny. I guess you really can learn a lot about someone from their grocery list. Ductape, lotion, and beer. Hmm... Lol.

joiseystud
Автор

Bucky, why is duct tape usually on your list?!

jamelstringer
Автор

4:04 *downloads your app, runs it* Oh yeah, you need milk! *adds milk to the grocery list* You already have milk hoss! *deinstalls app*

umnikos
Автор

i started watching this video at 12:35am, idk why but i get such a kick at comparing our times cause theyre sometimes at like 3 in the morning

sudaknot
Автор

It's 2:08AM in india and i'm in love with python because of thenewboston..!!

ShlokWalia
Автор

mycart = {'milk', 'cheese', 'bread', 'jam', 'tea', 'beer'}
var1 = input("Add item: ")
for a in mycart:
if a in var1:
print(a, "- YOU ALREADY HAVE THIS ITEM")
continue
print(a)

TopSpeedKertus
Автор

wondering why the set items werent printed in the same order as u wrote them

ziedchekir
Автор

@thenewboston you have great fun tutorials. Its helpful

earlholder
Автор

why does the first set print out of order? shouldn't it print the same order as the groceries={....}?

Sci-Mon
Автор

items = {'milk', 'oil', 'beef', 'chikens', 'lotion', 'tea'}

check=input("check avilablity : ")
for x in items:
if x == check:
print(x, " already in the list")
break
else:
print("New item found")
#items+check;
break

MarufIslam
Автор

If anyone is wondering, how Bucky looks like do watch his CSS tutorial.

goldenpie
Автор

I enjoy so much of your videos, you are inspiring....

drcvagos-iu
Автор

I like to watch this video, it helps me a lot due to a beginner, and haha, I know what's in walmart :)

hanjiali
Автор

my trip to walmart and setr trully a professional programmer

ImJestFaiq
Автор

Bucky In python sets, why the words mentioned must have the same format like if I have used the word "Duct Tape" in the set i must use the same thing in my if Ioop aswell I cannot search it as "duct tape". Is there any way to do it so??

vinays
Автор

it says in the bottom right corner 29. of August yet this video was published 28.
dafuq?!

rngde
Автор

maybe they know your face from the YT thumbnail?! lol...

levyroth
Автор

Why did you use curly brackets instead of square? Whats the difference?

UniversityOfMassachusets