Please, can you tell me how did you just comment all of these lines that fast @Update: it's (Ctrl + forward dash)(00:22:00 - 00:29:05) - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

Please, can you tell me how did you just comment all of these lines that fast @Update: it's (Ctrl + forward dash)(00:22:00 - 00:29:05)
Python Tutorial for Beginners 4: Lists, Tuples, and Sets

In this Python Beginner Tutorial, we will begin learning about Lists, Tuples, and Sets in Python. Lists and Tuples allow us to work with sequential data, and Sets allow us to work with unordered unique values. We will go over most of the methods, learn when to use which data type, and also the pe...
In this Python Beginner Tutorial, we will begin learning about Lists, Tuples, and Sets in Python. Lists and Tuples allow us to work with sequential data, and Sets allow us to work with unordered unique values. We will go over most of the methods, learn when to use which data type, and also the performance benefits of each type as well. Let's get started.

The code from this video can be found at:
https://github.com/CoreyMSchafer/code_snippets/tree/master/Python-Lists

Watch the full Python Beginner Series here:
https://www.youtube.com/playlist?list=PL-osiE80TeTskrapNbzXhwoFUiLCjGgY7

Slicing Video: https://youtu.be/ajrtAuDg3yw


✅ Support My Channel Through Patreon:
https://www.patreon.com/coreyms

✅ Become a Channel Member:
https://www.youtube.com/channel/UCCezIgC97PvUuR4_gbFUs5g/join

✅ One-Time Contribution Through PayPal:
https://goo.gl/649HFY

✅ Cryptocurrency Donations:
Bitcoin Wallet - 3MPH8oY2EAgbLVy7RBMinwcBntggi7qeG3
Ethereum Wallet - 0x151649418616068fB46C3598083817101d3bCD33
Litecoin Wallet - MPvEBY5fxGkmPQgocfJbxP6EmTo5UUXMot

✅ Corey's Public Amazon Wishlist
http://a.co/inIyro1

✅ Equipment I Use and Books I Recommend:
https://www.amazon.com/shop/coreyschafer

▶️ You Can Find Me On:
My Website - http://coreyms.com/
My Second Channel - https://www.youtube.com/c/coreymschafer
Facebook - https://www.facebook.com/CoreyMSchafer
Twitter -
Instagram - https://www.instagram.com/coreymschafer/

#Python

#Python #Python Lists #Python Tuples #Python Sets #Python Data Types #Python for Beginners #Absolute Beginners #Python for Absolute Beginners #Python Basics #Getting Started with Python #Python 3.6 #Python 36 #Python 3
List : - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

List :

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:00:00 - 00:20:05
Actually, you can see the first arg of courses[] as the initial index and the second as the number of items that will be return, or the length of a new array - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

Actually, you can see the first arg of courses[] as the initial index and the second as the number of items that will be return, or the length of a new array

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:00:02 - 00:29:05
Can you say at print(courses()) this:  "Take, from the beginning, the first two items?" - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

Can you say at print(courses()) this: "Take, from the beginning, the first two items?"

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:00:02 - 00:29:05
courses[] from 0 index up to but not including 2courses[:2] or courses[2:]courses.append('Art')courses.insert(0, 'Art') insert at indexcourses.insert(0, courses_2) inserts whole LIST AS ONE ITEM into a list using indexcourses.extend(courses_2) joins two lists by each individual items in a listscourses.remove('Math')courses.pop() removes and returns removed valuecourses.reverse() reverses in placecourses.sort(reverse=True) sorts in descendingsorted_courses = sorted(courses) for sorting not in placemin(num), max(num), sum(num)courses.index('CompSci') shows the index of item'Art' in courses shows True or False, contains or notfor index, course in enumerate(courses, start = 1): loops through each item in courses using index that starts with 1course_str = ' -  '.join(courses) converts a list into a string using separatornew_list = course_str.split(' - ') converts a string into a list using separator - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

courses[] from 0 index up to but not including 2courses[:2] or courses[2:]courses.append('Art')courses.insert(0, 'Art') insert at indexcourses.insert(0, courses_2) inserts whole LIST AS ONE ITEM into a list using indexcourses.extend(courses_2) joins two lists by each individual items in a listscourses.remove('Math')courses.pop() removes and returns removed valuecourses.reverse() reverses in placecourses.sort(reverse=True) sorts in descendingsorted_courses = sorted(courses) for sorting not in placemin(num), max(num), sum(num)courses.index('CompSci') shows the index of item'Art' in courses shows True or False, contains or notfor index, course in enumerate(courses, start = 1): loops through each item in courses using index that starts with 1course_str = ' - '.join(courses) converts a list into a string using separatornew_list = course_str.split(' - ') converts a string into a list using separator

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:00:02 - 00:29:05
print(courses[]) #['history', 'maths']print(courses[:2])  #['history', 'maths']print(courses[2:])  #['physics', 'compsci'] - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

print(courses[]) #['history', 'maths']print(courses[:2]) #['history', 'maths']print(courses[2:]) #['physics', 'compsci']

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:00:02 - 00:29:05
-  Lists - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

- Lists

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:01:00 - 00:22:03
print(courses[]) - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

print(courses[])

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:02:05 - 00:29:05
what happens when we put negative value but in case me i got 1 as output but why please explain Thanks for this great Series Of Python Tutorials - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

what happens when we put negative value but in case me i got 1 as output but why please explain Thanks for this great Series Of Python Tutorials

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:03:10 - 00:29:05
, why does courses[4] not just output History by looping backwards, since 4 is ahead of the range. - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

, why does courses[4] not just output History by looping backwards, since 4 is ahead of the range.

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:03:21 - 00:29:05
So I'm up to the  minute marker and I'm just now realizing that this is similar to your Intro to Slicing video.  Thank you so much for these great videos!!!! - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

So I'm up to the minute marker and I'm just now realizing that this is similar to your Intro to Slicing video. Thank you so much for these great videos!!!!

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:04:00 - 00:29:05
physics is actually  the third index in the list but you said the second - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

physics is actually the third index in the list but you said the second

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:05:00 - 00:29:05
I just got to the  minute marker.....lol - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

I just got to the minute marker.....lol

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:05:04 - 00:29:05
It's an instructive video! Hi, did you use Python or Idle when you were teaching us? From  to 6:41, you used append command first, then insert command, but why your list did not update after using append command? I see that when you printed insert command, your list had only one Art. - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

It's an instructive video! Hi, did you use Python or Idle when you were teaching us? From to 6:41, you used append command first, then insert command, but why your list did not update after using append command? I see that when you printed insert command, your list had only one Art.

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:05:37 - 00:29:05
ReferI suppose .pop() is a function, so that when you write courses.pop() in the code it deleted the last element of the list, fair enough. - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

ReferI suppose .pop() is a function, so that when you write courses.pop() in the code it deleted the last element of the list, fair enough.

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:09:53 - 00:29:05
At around  min mark you were telling us about sort( ) method, extend( ) method, but near the end of the video we are learning about -  list( ) class, tuple( ) class? - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

At around min mark you were telling us about sort( ) method, extend( ) method, but near the end of the video we are learning about - list( ) class, tuple( ) class?

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:11:00 - 00:29:05
How do you do that magic at  ? you simply write some numbers divided only with comma, and then suddenly boom space appears :D - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

How do you do that magic at ? you simply write some numbers divided only with comma, and then suddenly boom space appears :D

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:11:00 - 00:29:05
Hi Corey, can you tell me how you did that sort of "trick" at ? You defined the nums list with no spaces between the commas, then you hit something and it added the whitespaces :D - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

Hi Corey, can you tell me how you did that sort of "trick" at ? You defined the nums list with no spaces between the commas, then you hit something and it added the whitespaces :D

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:11:02 - 00:29:05
he puts a spaces after each element, how do you do that? - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

he puts a spaces after each element, how do you do that?

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:11:02 - 00:29:05
@ How can you put spaces between items automatically? - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

@ How can you put spaces between items automatically?

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:11:03 - 00:29:05
at  he says we don't need to reset our variables, what does he mean? - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

at he says we don't need to reset our variables, what does he mean?

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:11:50 - 00:29:05
hey Corey. Why is my cancel Build greyed out and cant work. I cant cancel build like you did at - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

hey Corey. Why is my cancel Build greyed out and cant work. I cant cancel build like you did at

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:12:14 - 00:29:05
Great video. A little bit confused at . why the "sorted" function doesn't sort the list in place ? - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

Great video. A little bit confused at . why the "sorted" function doesn't sort the list in place ?

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:12:40 - 00:29:05
At  you forgot to mention that the index function only returns the index of the first occurrence of the item. So it's not very useful when using a list that might include multiple identical objects. - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

At you forgot to mention that the index function only returns the index of the first occurrence of the item. So it's not very useful when using a list that might include multiple identical objects.

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:14:45 - 00:29:05
At  when discussing changing the variable from "item" to "course" in the for loop, you somehow simultaneously changed that variable in the indented print function as well. What did you press on the keyboard to do that?  I'm a mac user. - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

At when discussing changing the variable from "item" to "course" in the for loop, you somehow simultaneously changed that variable in the indented print function as well. What did you press on the keyboard to do that? I'm a mac user.

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:16:38 - 00:29:05
for index, course in enumerate(courses, 1):print(index,  course) - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

for index, course in enumerate(courses, 1):print(index, course)

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:17:47 - 00:29:05
for anyone who needs a timestamp - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

for anyone who needs a timestamp

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:17:48 - 00:29:05
Hi Corey, Thanks for the wonderful videos. Output for my program differs from what's shown in the video at , its printed in braces and with a comma and single quotes. I am using python 2.7. Any idea on how to get the output similar to shown in the video with python 2.7. - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

Hi Corey, Thanks for the wonderful videos. Output for my program differs from what's shown in the video at , its printed in braces and with a comma and single quotes. I am using python 2.7. Any idea on how to get the output similar to shown in the video with python 2.7.

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:17:53 - 00:29:05
at  i think he meant space hyphen space. Other than that a really good video!!! - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

at i think he meant space hyphen space. Other than that a really good video!!!

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:19:53 - 00:29:05
Tuple : - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

Tuple :

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:20:05 - 00:23:34
Tuples and sets starts at - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

Tuples and sets starts at

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:20:05 - 00:29:05
- Tuples section - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

- Tuples section

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:20:12 - 00:29:05
I couldn't understand why a change in list_1 in line 8 , causes change in list_2?? since the assignment of list_2 = list_1 is done in line 2, why that change affects list_2? - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

I couldn't understand why a change in list_1 in line 8 , causes change in list_2?? since the assignment of list_2 = list_1 is done in line 2, why that change affects list_2?

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:21:28 - 00:29:05
There's one thing here that struck me: I'm not new to programming in general but the behavior in  ( _both_ lists changing) was quite shocking to me :-) I had a slight hunch what was happening there but still I had to look it up and found this: https://stackoverflow.com/questions/2612802/how-to-clone-or-copy-a-list (for all you guys out there who got confused). - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

There's one thing here that struck me: I'm not new to programming in general but the behavior in ( _both_ lists changing) was quite shocking to me :-) I had a slight hunch what was happening there but still I had to look it up and found this: https://stackoverflow.com/questions/2612802/how-to-clone-or-copy-a-list (for all you guys out there who got confused).

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:21:28 - 00:29:05
In code during , when we assigned list2 equal to list1(it had list1[0]=history)  and later we make change to list1 only then why this change gets updated in list2 too? - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

In code during , when we assigned list2 equal to list1(it had list1[0]=history) and later we make change to list1 only then why this change gets updated in list2 too?

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:21:32 - 00:29:05
Please, can you tell me how did you just comment all of these lines that fast @Update: it's (Ctrl + forward dash) - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

Please, can you tell me how did you just comment all of these lines that fast @Update: it's (Ctrl + forward dash)

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:22:00 - 00:29:05
Hi Corey, great vid. One question: How did you comment out several rows? (Minute ) - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

Hi Corey, great vid. One question: How did you comment out several rows? (Minute )

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:22:02 - 00:29:05
- Tuples - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

- Tuples

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:22:03 - 00:23:35
LIst : - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

LIst :

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:23:34 - 00:29:05
- Sets - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

- Sets

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:23:35 - 00:29:05
= Sets - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

= Sets

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:23:35 - 00:29:05
Sets - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

Sets

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:23:37 - 00:29:05
whatsap at - Python Tutorial for Beginners 4: Lists, Tuples, and Sets

whatsap at

Python Tutorial for Beginners 4: Lists, Tuples, and Sets
2017年05月18日 
00:27:00 - 00:29:05

Corey Schafer

※本サイトに掲載されているチャンネル情報や動画情報はYouTube公式のAPIを使って取得・表示しています。

Timetable

動画タイムテーブル

動画数:234件

the future spoken is my current present. Unless I'm completely desperate, I'm not hitting reddit or google/stack overflow for most roadblocks. - How to Use ChatGPT as a Powerful Tool for Programming

the future spoken is my current present. Unless I'm completely desperate, I'm not hitting reddit or google/stack overflow for most roadblocks.

How to Use ChatGPT as a Powerful Tool for Programming
2023年05月22日  o k t o b e r 様 
00:12:22 - 00:31:08
Good video as always😉  I remember asking that too lol - How to Use ChatGPT as a Powerful Tool for Programming

Good video as always😉 I remember asking that too lol

How to Use ChatGPT as a Powerful Tool for Programming
2023年05月22日  kami 様 
00:28:19 - 00:31:08
@ - pure gold, pure gold! <3 - How to Use ChatGPT as a Powerful Tool for Programming

@ - pure gold, pure gold! <3

How to Use ChatGPT as a Powerful Tool for Programming
2023年05月22日  ulf gjerdingen 様 
00:28:26 - 00:31:08
You almost had me there haha! ChatGPT can be wrong but it certainly wasn't wrong about those top notch resources! I massively appreciate all the uploads and I hope they keep coming supercharged with Chat GPT. Thanks to you, sentdex, techwithtim and Dennis Ivy I now know how to properly code on python, use git for version control and build a functional website. - How to Use ChatGPT as a Powerful Tool for Programming

You almost had me there haha! ChatGPT can be wrong but it certainly wasn't wrong about those top notch resources! I massively appreciate all the uploads and I hope they keep coming supercharged with Chat GPT. Thanks to you, sentdex, techwithtim and Dennis Ivy I now know how to properly code on python, use git for version control and build a functional website.

How to Use ChatGPT as a Powerful Tool for Programming
2023年05月22日  Uj Vag 様 
00:28:42 - 00:31:08
and it's  am here (south east asia), and idk why I'm watching a python tutorial rather than sleeping 😂 - Python Tutorial: Simulate the Powerball Lottery Using Python

and it's am here (south east asia), and idk why I'm watching a python tutorial rather than sleeping 😂

Python Tutorial: Simulate the Powerball Lottery Using Python
2023年01月10日  X 様 
00:02:49 - 00:38:56
… nice… 😂 - Python Tutorial: Simulate the Powerball Lottery Using Python

… nice… 😂

Python Tutorial: Simulate the Powerball Lottery Using Python
2023年01月10日  Bartosz Turkowyd 様 
00:04:50 - 00:38:56
I've seen every Python video you've made....   first innuendo. 😜 - Python Tutorial: Simulate the Powerball Lottery Using Python

I've seen every Python video you've made.... first innuendo. 😜

Python Tutorial: Simulate the Powerball Lottery Using Python
2023年01月10日  Martin Beaudry 様 
00:04:52 - 00:38:56
Man it's  am in India I am lucky to be the first one to hear your voice god bless you brother and an awesome teacher. - Python Tutorial: Simulate the Powerball Lottery Using Python

Man it's am in India I am lucky to be the first one to hear your voice god bless you brother and an awesome teacher.

Python Tutorial: Simulate the Powerball Lottery Using Python
2023年01月10日  Big Samosa 様 
00:12:15 - 00:38:56
# you can also use the built-in pprint module for pretty printing dictionaries ;) - Python Tutorial: Simulate the Powerball Lottery Using Python

# you can also use the built-in pprint module for pretty printing dictionaries ;)

Python Tutorial: Simulate the Powerball Lottery Using Python
2023年01月10日  Schoenling Wunderbar 様 
00:25:00 - 00:38:56
it would be very interesting to see if there could be a step function where this algorithm can simulate the increases in jackpot winnings. It’s going to be one in 292+ million of a chance that you hit it at all much less multiple times, but the code should be interesting to see. - Python Tutorial: Simulate the Powerball Lottery Using Python

it would be very interesting to see if there could be a step function where this algorithm can simulate the increases in jackpot winnings. It’s going to be one in 292+ million of a chance that you hit it at all much less multiple times, but the code should be interesting to see.

Python Tutorial: Simulate the Powerball Lottery Using Python
2023年01月10日  20 80 様 
00:27:43 - 00:38:56
A OAuth Django video would be awesome!(Applicable to all sorts of OAuth situations, not just the YouTube API.) - Python YouTube API Tutorial: Using OAuth to Access User Accounts

A OAuth Django video would be awesome!(Applicable to all sorts of OAuth situations, not just the YouTube API.)

Python YouTube API Tutorial: Using OAuth to Access User Accounts
2020年09月10日 
00:07:58 - 00:43:21
At  you move the file and see some blurred miniature version of your open folders in the dock. How did you enable that? - Python YouTube API Tutorial: Using OAuth to Access User Accounts

At you move the file and see some blurred miniature version of your open folders in the dock. How did you enable that?

Python YouTube API Tutorial: Using OAuth to Access User Accounts
2020年09月10日 
00:09:58 - 00:43:21
In case you are getting Error 403 ("access_denied The developer hasn’t given you access to this app") go to the OAuth consent screen and under Test Users add your email by clicking on Add Users.  You should be able to grant access after you've added User. - Python YouTube API Tutorial: Using OAuth to Access User Accounts

In case you are getting Error 403 ("access_denied The developer hasn’t given you access to this app") go to the OAuth consent screen and under Test Users add your email by clicking on Add Users. You should be able to grant access after you've added User.

Python YouTube API Tutorial: Using OAuth to Access User Accounts
2020年09月10日 
00:19:36 - 00:43:21
@corey  So why did you add the join function here, when appending the video id to the list its already a list and its working for me when I pass the vid_ids directly - Python YouTube API Tutorial: Calculating the Duration of a Playlist

@corey So why did you add the join function here, when appending the video id to the list its already a list and its working for me when I pass the vid_ids directly

Python YouTube API Tutorial: Calculating the Duration of a Playlist
2020年06月11日 
00:11:24 - 00:37:38
TypeError: expected string or bytes-like object, I am taking this error in , any idea? - Python YouTube API Tutorial: Calculating the Duration of a Playlist

TypeError: expected string or bytes-like object, I am taking this error in , any idea?

Python YouTube API Tutorial: Calculating the Duration of a Playlist
2020年06月11日 
00:18:50 - 00:37:38
(I love that "Whoops that went too well"-moment at  :D) - Python Tutorial: Real World Example - Using Patreon API and Pillow to Automate Image Creation

(I love that "Whoops that went too well"-moment at :D)

Python Tutorial: Real World Example - Using Patreon API and Pillow to Automate Image Creation
2020年05月11日 
00:35:19 - 00:52:33
Read CSV - - Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc

Read CSV -

Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc
2020年04月02日 
00:00:56 - 00:03:20
Write CSV - - Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc

Write CSV -

Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc
2020年04月02日 
00:03:20 - 00:04:40
Write TSV - - Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc

Write TSV -

Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc
2020年04月02日 
00:04:40 - 00:06:00
Read TSV - - Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc

Read TSV -

Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc
2020年04月02日 
00:06:00 - 00:06:15
Write Excel - - Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc

Write Excel -

Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc
2020年04月02日 
00:06:15 - 00:10:42
Read Excel -  (Start at 6:15 to see installed packages) - Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc

Read Excel - (Start at 6:15 to see installed packages)

Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc
2020年04月02日 
00:10:42 - 00:12:18
Write JSON - - Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc

Write JSON -

Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc
2020年04月02日 
00:12:18 - 00:15:41
Read JSON - - Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc

Read JSON -

Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc
2020年04月02日 
00:15:41 - 00:16:59
Write SQL - - Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc

Write SQL -

Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc
2020年04月02日 
00:16:59 - 00:24:57
# Just in case:If you are using sqlite3 instead of sqlalchemy, you have to use SQL string not the table name: - Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc

# Just in case:If you are using sqlite3 instead of sqlalchemy, you have to use SQL string not the table name:

Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc
2020年04月02日 
00:24:57 - 00:32:45
Read SQL -  (Start at 16:59 to see installed packages) - Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc

Read SQL - (Start at 16:59 to see installed packages)

Python Pandas Tutorial (Part 11): Reading/Writing Data to Different Sources - Excel, JSON, SQL, Etc
2020年04月02日 
00:24:57 - 00:32:45
Corey Ception - Live Stream - Chat, Q&A, Brews, and Coding

Corey Ception

Live Stream - Chat, Q&A, Brews, and Coding
2020年03月24日  MLittle Programming 様 
00:00:03 - 01:01:21
Ah, I missed the stream :(..  VIM! haha but seriously, I'm a recent convert to vim. It's powerful and efficient. - Live Stream - Chat, Q&A, Brews, and Coding

Ah, I missed the stream :(.. VIM! haha but seriously, I'm a recent convert to vim. It's powerful and efficient.

Live Stream - Chat, Q&A, Brews, and Coding
2020年03月24日  stuart 様 
00:02:35 - 01:01:21
Youtube premium is ad-free. - Live Stream - Chat, Q&A, Brews, and Coding

Youtube premium is ad-free.

Live Stream - Chat, Q&A, Brews, and Coding
2020年03月24日  stuart 様 
00:21:00 - 01:01:21
I knew that, but...😆 - Live Stream - Chat, Q&A, Brews, and Coding

I knew that, but...😆

Live Stream - Chat, Q&A, Brews, and Coding
2020年03月24日  Deepam Gupta 様 
00:41:25 - 01:01:21