what an interesting video is this dave. thank you very much !!
@DaveGrayTeachesCode Жыл бұрын
You are very welcome!
@utinthein7274 Жыл бұрын
Thank You Sir
@DaveGrayTeachesCode Жыл бұрын
Most welcome!
@mohamedmagdy-jy8vp9 ай бұрын
dave i have a question why in the order print band in 18:52 didn`t print the first band in the program and printed the one we just made it
@mortezafarhangpanah256 Жыл бұрын
Thank 1You Sir
@DaveGrayTeachesCode Жыл бұрын
Welcome!
@johnaweiss11 ай бұрын
6:29 You said each key/value pair is a tuple. Tuples can't be modified. So how can you modify a value in a dictionary?
@005JR84 ай бұрын
Hi both copy and const method are creating shallow copies not deep copies
@muzhaffarhaydar79285 ай бұрын
thanks dave
@ivanshugaev714610 ай бұрын
is "print(band["vocals"])" and "print(band.get("guitar"))" interchangeable?
@hussainalaa23619 ай бұрын
i put in (morenums) numbers like (98, 71 ,51, and others), the sets doesnt set them in order in the (nums), it changes its order.
@AverageCoderOfficial Жыл бұрын
Perfect Course
@DaveGrayTeachesCode Жыл бұрын
Thank you!
@alexanderkomanov4151 Жыл бұрын
As perfect as usual!
@DaveGrayTeachesCode Жыл бұрын
Thank you!
@johnaweiss11 ай бұрын
22:53 You didn't test to see if `0 in nums` will find the False.
@zoltanmolnar6956 Жыл бұрын
Thank you for really amazing courses, first please finish this python and nextJs please do not start until React-Native. Python is the best choice and also nextJS13 nowadays, thank you
@DaveGrayTeachesCode Жыл бұрын
I will keep going until finished! 🚀
@lsteved11 ай бұрын
band["vocals"] = "Coverdale" Boo! haha Seriously though, great lessons.. and the Zeppelin examples actually helped!
@utinthein7274 Жыл бұрын
Sir, How to check values in band. I got error Sir. print('Plant' in band)
@DaveGrayTeachesCode Жыл бұрын
You can check the keys of a dictionary with the keyword in like: "vocals" in band If you want to check the values in a dictionary, consider using band.values() like: "Plant" in band.values() The values() method returns a list of the dictionary values, and we previously learned we can use the keyword in to check if a value is in a list.