-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpythontutorials.xml
2350 lines (2322 loc) · 87.7 KB
/
pythontutorials.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns:yt="http://www.youtube.com/xml/schemas/2015" xmlns:media="http://search.yahoo.com/mrss/" xmlns="http://www.w3.org/2005/Atom">
<link rel="self" href="http://www.youtube.com/feeds/videos.xml?playlist_id=PLR_5PTwg_uAQw40OhdvAwN4NvzWv0xOZ2"/>
<id>yt:playlist:PLR_5PTwg_uAQw40OhdvAwN4NvzWv0xOZ2</id>
<yt:playlistId>PLR_5PTwg_uAQw40OhdvAwN4NvzWv0xOZ2</yt:playlistId>
<yt:channelId>UCo11jfMvmwivG6g3c9tfJqQ</yt:channelId>
<title>Python Tutorial for Beginners Playlist</title>
<author>
<name>LeetCode Solutions</name>
<uri>https://www.youtube.com/channel/UCo11jfMvmwivG6g3c9tfJqQ</uri>
</author>
<published>2022-11-23T11:59:20+00:00</published>
<entry>
<id>yt:video:IbSXF7eT-AU</id>
<yt:videoId>IbSXF7eT-AU</yt:videoId>
<yt:channelId>UCo11jfMvmwivG6g3c9tfJqQ</yt:channelId>
<title>Python 3 - Episode 1 - No experience necessary #python3</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=IbSXF7eT-AU"/>
<author>
<name>LeetCode Solutions</name>
<uri>https://www.youtube.com/channel/UCo11jfMvmwivG6g3c9tfJqQ</uri>
</author>
<published>2022-11-24T05:00:33+00:00</published>
<updated>2022-12-13T16:32:26+00:00</updated>
<media:group>
<media:title>Python 3 - Episode 1 - No experience necessary #python3</media:title>
<media:content url="https://www.youtube.com/v/IbSXF7eT-AU?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/IbSXF7eT-AU/hqdefault.jpg" width="480" height="360"/>
<media:description>Intro: (0:00)
About this series: (0:05)
Check to see if its installed: (0:25)
Install Python for your OS: (1:25)
Test the installation: (2:59)
Install and configure an IDE: (4:14)
Hello World: (7:15)
https://pythonread.github.io
Install Python on...
Windows : https://bit.ly/python-on-windows
MacOS : https://bit.ly/python-macos
CentOS : https://bit.ly/python-centos
Ubuntu : https://bit.ly/python-ubuntu
Python 3 - Episode 1 - No experience necessary
https://youtu.be/IbSXF7eT-AU
Python 3 - Episode 2 - Variables are something that changes
https://youtu.be/yZKbNOITHAU
Python 3 - Episode 3 - Comments, Boolean and Comparisons
https://youtu.be/UzHvQxBcF1Q
Python 3 - Episode 4 - Numbers and basic numeric operations
https://youtu.be/FnsRbFZqdQU
Python 3 - Episode 5 - What are strings
https://youtu.be/N3kE_RuUVt4
Python 3 - Episode 6 - Basic string operations
https://youtu.be/GMrDDqsqI8s
Python 3 - Episode 7 - Lists
https://youtu.be/idhNcD9jtzE
Python 3 - Episode 8 - Sets
https://youtu.be/qiEGFgcWzn4
Python 3 - Episode 9 - Tuples, fast and read only
https://youtu.be/N3VmRXcoLDk
Python 3 - Episode 10 - Dictionary, indexed with keys
https://youtu.be/nMUGkTsttDQ
Python 3 - Episode 11 - Flow control with IF, ELSE and ELIF
https://youtu.be/AC6WURKIgcU
Python 3 - Episode 12 - Flow control with While loops
https://youtu.be/XOpZrd_D8es
Python 3 - Episode 13 - For loop and range
https://youtu.be/vx04Yfkrms8
Python 3 - Episode 14 - Simple app, paint calculator
https://youtu.be/ybr-nTJJFDI
Python 3 - Episode 15 - Intro to functions
https://youtu.be/VM2gJpjNhZM
Python 3 - Episode 16 - Functions and scope
https://youtu.be/k22eKsflvHI
Python 3 - Episode 17 - Functions in depth
https://youtu.be/-6j1_hLbq3Y
Python 3 - Episode 18 - Packing and unpacking data
https://youtu.be/Wpbbf66gVDw
Python 3 - Episode 19 - Functions and arguments
https://youtu.be/PiJQhnbgRtU
Python 3 - Episode 20 - Global keyword
https://youtu.be/uXxmR17Yvrw
Python 3 - Episode 21 - Walrus operator
https://youtu.be/bIS5XdqjyLw
Python 3 - Episode 22 - Navigating folders
https://youtu.be/zRLHQQ2tkKU
Python 3 - Episode 23 - Reading a text file
https://youtu.be/jrtIfqGlAWo
Python 3 - Episode 24 - Write a text file
https://youtu.be/thb_z_wPVu8
Python 3 - Episode 25 - Working with binary files
https://youtu.be/ueMyoL1MGlg
Python 3 - Episode 26 - Working with JSON
https://youtu.be/JIqW1KGl9Zs
Python 3 - Episode 27 - Imports
https://youtu.be/s8goqLLLCbA
Python 3 - Episode 28 - Main function
https://youtu.be/ui0g0ZIJIFc
Python 3 - Episode 29 - Import madness
https://youtu.be/7tAym_vaB6A
Python 3 - Episode 30 - Introduction to classes
https://youtu.be/U40v3hciOzM
Python 3 - Episode 31 - Class Inheritance
https://youtu.be/-RKlrYt4qVw
Python 3 - Episode 32 - Multiple Inheritance
https://youtu.be/KLsv0CgYSAo
Python 3 - Episode 33 - Pet Shop Application
https://youtu.be/a4M0ySdqId8
Python 3 - Episode 34 - The undesrcore
https://youtu.be/SfbwAj54mL4
Python 3 - Episode 35 - Decorators
https://youtu.be/45O4lWI4LAY
Python 3 - Episode 36 - Iterators
https://youtu.be/61eSMbpmUgk
Python 3 - Episode 37 - Exceptions
https://youtu.be/g0JnUjBolA8
Python 3 - Episode 38 - Pickle
https://youtu.be/nwR1S_ge70s
Python 3 - Episode 39 - Map function
https://youtu.be/RgekiWhBUc0
Python 3 - Episode 40 - Filter function
https://youtu.be/COPDngImfKI
Python 3 - Episode 41 - Logging basics
https://youtu.be/SYecRmTeBOM
Python 3 - Episode 42 - Simple app, Dir Stats
https://youtu.be/eYivpebplDE
Python 3 - Episode 43 - Timers, intro to threads
https://youtu.be/CLvhMlpUyXI
Python 3 - Episode 44 - Thread basics
https://youtu.be/AIclIYDJ3zA
Python 3 - Episode 45 - Thread Pools
https://youtu.be/vajNHfG_ZEY
Python 3 - Episode 46 - Thread Locking
https://youtu.be/snPtNQccDLM
Python 3 - Episode 47 - Daemon threads
https://youtu.be/GULIawOoAm0
Python 3 - Episode 48 - Queues and Futures
https://youtu.be/s2JNiuNCJlk
Python 3 - Episode 49 - Intro to Multiprocessing
https://youtu.be/wuP-Esom0-c
Python 3 - Episode 50 - Multiprocess starting and stopping
https://youtu.be/v9-D7YOSyu4
Python 3 - Episode 51 - Multiprocess pool
https://youtu.be/Pzv30ecJoyo
Python 3 - Episode 52 - Async code
https://youtu.be/bPEgYoOm0bQ
Python 3 - Episode 53 - Producer and consumer
https://youtu.be/Qo6hBgsXAlk
Python 3 - Episode 54 - Communicating with processes
https://youtu.be/qvEOZMpwtf0
Python 3 - Episode 55 - Basic TCP Client
https://youtu.be/5V91veF7PUQ
Python 3 - Episode 56 - Basic TCP Server
https://youtu.be/La3cyCnpSC4
Python 3 - Episode 57 - Determine port availability
https://youtu.be/EtRelbO2yNg
Python 3 - Episode 58 - UDP Sockets
https://youtu.be/GqNbobpNQys
Python 3 - Episode 59 - Blocking vs Non Blocking Sockets
https://youtu.be/tWlJsUazb_I
Python 3 - Episode 60 - Example App: TCP Echo Server
https://youtu.be/jm9mgejjTtw
Python 3 - Episode 61 - DateTime is super easy to use
https://youtu.be/RVzJwdKH2rw
#pythonprogramming #python3 #pythonforbeginners
Like 👍, Comment ❤️ and Subscribe 📌 To Our Channel 👇</media:description>
<media:community>
<media:starRating count="2" average="5.00" min="1" max="5"/>
<media:statistics views="69"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:yZKbNOITHAU</id>
<yt:videoId>yZKbNOITHAU</yt:videoId>
<yt:channelId>UCo11jfMvmwivG6g3c9tfJqQ</yt:channelId>
<title>Python 3 - Episode 2 - Variables are something that changes</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=yZKbNOITHAU"/>
<author>
<name>LeetCode Solutions</name>
<uri>https://www.youtube.com/channel/UCo11jfMvmwivG6g3c9tfJqQ</uri>
</author>
<published>2022-11-24T10:30:23+00:00</published>
<updated>2022-11-25T06:00:11+00:00</updated>
<media:group>
<media:title>Python 3 - Episode 2 - Variables are something that changes</media:title>
<media:content url="https://www.youtube.com/v/yZKbNOITHAU?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/yZKbNOITHAU/hqdefault.jpg" width="480" height="360"/>
<media:description>https://coderpad.blogspot.com/2022/11/python-variable-types.html
Intro: (0:00)
New file: (0:08)
Data types: (1:48)
Dynamic and strong: (4:05)
---------------------------------------------
Python 3 - Episode 1 - No experience necessary
https://youtu.be/IbSXF7eT-AU
Python 3 - Episode 2 - Variables are something that changes
https://youtu.be/yZKbNOITHAU
Python 3 - Episode 3 - Comments, Boolean and Comparisons
https://youtu.be/UzHvQxBcF1Q
Python 3 - Episode 4 - Numbers and basic numeric operations
https://youtu.be/FnsRbFZqdQU
Python 3 - Episode 5 - What are strings
https://youtu.be/N3kE_RuUVt4
Python 3 - Episode 6 - Basic string operations
https://youtu.be/GMrDDqsqI8s
Python 3 - Episode 7 - Lists
https://youtu.be/idhNcD9jtzE
Python 3 - Episode 8 - Sets
https://youtu.be/qiEGFgcWzn4
Python 3 - Episode 9 - Tuples, fast and read only
https://youtu.be/N3VmRXcoLDk
Python 3 - Episode 10 - Dictionary, indexed with keys
https://youtu.be/nMUGkTsttDQ
Python 3 - Episode 11 - Flow control with IF, ELSE and ELIF
https://youtu.be/AC6WURKIgcU
Python 3 - Episode 12 - Flow control with While loops
https://youtu.be/XOpZrd_D8es
Python 3 - Episode 13 - For loop and range
https://youtu.be/vx04Yfkrms8
Python 3 - Episode 14 - Simple app, paint calculator
https://youtu.be/ybr-nTJJFDI
Python 3 - Episode 15 - Intro to functions
https://youtu.be/VM2gJpjNhZM
Python 3 - Episode 16 - Functions and scope
https://youtu.be/k22eKsflvHI
Python 3 - Episode 17 - Functions in depth
https://youtu.be/-6j1_hLbq3Y
Python 3 - Episode 18 - Packing and unpacking data
https://youtu.be/Wpbbf66gVDw
Python 3 - Episode 19 - Functions and arguments
https://youtu.be/PiJQhnbgRtU
Python 3 - Episode 20 - Global keyword
https://youtu.be/uXxmR17Yvrw
Python 3 - Episode 21 - Walrus operator
https://youtu.be/bIS5XdqjyLw
Python 3 - Episode 22 - Navigating folders
https://youtu.be/zRLHQQ2tkKU
Python 3 - Episode 23 - Reading a text file
https://youtu.be/jrtIfqGlAWo
Python 3 - Episode 24 - Write a text file
https://youtu.be/thb_z_wPVu8
Python 3 - Episode 25 - Working with binary files
https://youtu.be/ueMyoL1MGlg
Python 3 - Episode 26 - Working with JSON
https://youtu.be/JIqW1KGl9Zs
Python 3 - Episode 27 - Imports
https://youtu.be/s8goqLLLCbA
Python 3 - Episode 28 - Main function
https://youtu.be/ui0g0ZIJIFc
Python 3 - Episode 29 - Import madness
https://youtu.be/7tAym_vaB6A
Python 3 - Episode 30 - Introduction to classes
https://youtu.be/U40v3hciOzM
Python 3 - Episode 31 - Class Inheritance
https://youtu.be/-RKlrYt4qVw
Python 3 - Episode 32 - Multiple Inheritance
https://youtu.be/KLsv0CgYSAo
Python 3 - Episode 33 - Pet Shop Application
https://youtu.be/a4M0ySdqId8
Python 3 - Episode 34 - The undesrcore
https://youtu.be/SfbwAj54mL4
Python 3 - Episode 35 - Decorators
https://youtu.be/45O4lWI4LAY
Python 3 - Episode 36 - Iterators
https://youtu.be/61eSMbpmUgk
Python 3 - Episode 37 - Exceptions
https://youtu.be/g0JnUjBolA8
Python 3 - Episode 38 - Pickle
https://youtu.be/nwR1S_ge70s
Python 3 - Episode 39 - Map function
https://youtu.be/RgekiWhBUc0
Python 3 - Episode 40 - Filter function
https://youtu.be/COPDngImfKI
Python 3 - Episode 41 - Logging basics
https://youtu.be/SYecRmTeBOM
Python 3 - Episode 42 - Simple app, Dir Stats
https://youtu.be/eYivpebplDE
Python 3 - Episode 43 - Timers, intro to threads
https://youtu.be/CLvhMlpUyXI
Python 3 - Episode 44 - Thread basics
https://youtu.be/AIclIYDJ3zA
Python 3 - Episode 45 - Thread Pools
https://youtu.be/vajNHfG_ZEY
Python 3 - Episode 46 - Thread Locking
https://youtu.be/snPtNQccDLM
Python 3 - Episode 47 - Daemon threads
https://youtu.be/GULIawOoAm0
Python 3 - Episode 48 - Queues and Futures
https://youtu.be/s2JNiuNCJlk
Python 3 - Episode 49 - Intro to Multiprocessing
https://youtu.be/wuP-Esom0-c
Python 3 - Episode 50 - Multiprocess starting and stopping
https://youtu.be/v9-D7YOSyu4
Python 3 - Episode 51 - Multiprocess pool
https://youtu.be/Pzv30ecJoyo
Python 3 - Episode 52 - Async code
https://youtu.be/bPEgYoOm0bQ
Python 3 - Episode 53 - Producer and consumer
https://youtu.be/Qo6hBgsXAlk
Python 3 - Episode 54 - Communicating with processes
https://youtu.be/qvEOZMpwtf0
Python 3 - Episode 55 - Basic TCP Client
https://youtu.be/5V91veF7PUQ
Python 3 - Episode 56 - Basic TCP Server
https://youtu.be/La3cyCnpSC4
Python 3 - Episode 57 - Determine port availability
https://youtu.be/EtRelbO2yNg
Python 3 - Episode 58 - UDP Sockets
https://youtu.be/GqNbobpNQys
Python 3 - Episode 59 - Blocking vs Non Blocking Sockets
https://youtu.be/tWlJsUazb_I
Python 3 - Episode 60 - Example App: TCP Echo Server
https://youtu.be/jm9mgejjTtw
Python 3 - Episode 61 - DateTime is super easy to use
https://youtu.be/RVzJwdKH2rw
#pythonprogramming #python3 #pythonforbeginners
Like 👍, Comment ❤️ and Subscribe 📌 To Our Channel 👇</media:description>
<media:community>
<media:starRating count="3" average="5.00" min="1" max="5"/>
<media:statistics views="34"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:UzHvQxBcF1Q</id>
<yt:videoId>UzHvQxBcF1Q</yt:videoId>
<yt:channelId>UCo11jfMvmwivG6g3c9tfJqQ</yt:channelId>
<title>Python 3 - Episode 3 - Comments, Boolean and Comparisons</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=UzHvQxBcF1Q"/>
<author>
<name>LeetCode Solutions</name>
<uri>https://www.youtube.com/channel/UCo11jfMvmwivG6g3c9tfJqQ</uri>
</author>
<published>2022-11-24T11:30:08+00:00</published>
<updated>2022-11-24T11:30:08+00:00</updated>
<media:group>
<media:title>Python 3 - Episode 3 - Comments, Boolean and Comparisons</media:title>
<media:content url="https://www.youtube.com/v/UzHvQxBcF1Q?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/UzHvQxBcF1Q/hqdefault.jpg" width="480" height="360"/>
<media:description>Intro: (0:00)
Comments: (0:27)
Boolean: (4:27)
Comparison: (6:55)
----------------------------------
Python 3 - Episode 1 - No experience necessary
https://youtu.be/IbSXF7eT-AU
Python 3 - Episode 2 - Variables are something that changes
https://youtu.be/yZKbNOITHAU
Python 3 - Episode 3 - Comments, Boolean and Comparisons
https://youtu.be/UzHvQxBcF1Q
Python 3 - Episode 4 - Numbers and basic numeric operations
https://youtu.be/FnsRbFZqdQU
Python 3 - Episode 5 - What are strings
https://youtu.be/N3kE_RuUVt4
Python 3 - Episode 6 - Basic string operations
https://youtu.be/GMrDDqsqI8s
Python 3 - Episode 7 - Lists
https://youtu.be/idhNcD9jtzE
Python 3 - Episode 8 - Sets
https://youtu.be/qiEGFgcWzn4
Python 3 - Episode 9 - Tuples, fast and read only
https://youtu.be/N3VmRXcoLDk
Python 3 - Episode 10 - Dictionary, indexed with keys
https://youtu.be/nMUGkTsttDQ
Python 3 - Episode 11 - Flow control with IF, ELSE and ELIF
https://youtu.be/AC6WURKIgcU
Python 3 - Episode 12 - Flow control with While loops
https://youtu.be/XOpZrd_D8es
Python 3 - Episode 13 - For loop and range
https://youtu.be/vx04Yfkrms8
Python 3 - Episode 14 - Simple app, paint calculator
https://youtu.be/ybr-nTJJFDI
Python 3 - Episode 15 - Intro to functions
https://youtu.be/VM2gJpjNhZM
Python 3 - Episode 16 - Functions and scope
https://youtu.be/k22eKsflvHI
Python 3 - Episode 17 - Functions in depth
https://youtu.be/-6j1_hLbq3Y
Python 3 - Episode 18 - Packing and unpacking data
https://youtu.be/Wpbbf66gVDw
Python 3 - Episode 19 - Functions and arguments
https://youtu.be/PiJQhnbgRtU
Python 3 - Episode 20 - Global keyword
https://youtu.be/uXxmR17Yvrw
Python 3 - Episode 21 - Walrus operator
https://youtu.be/bIS5XdqjyLw
Python 3 - Episode 22 - Navigating folders
https://youtu.be/zRLHQQ2tkKU
Python 3 - Episode 23 - Reading a text file
https://youtu.be/jrtIfqGlAWo
Python 3 - Episode 24 - Write a text file
https://youtu.be/thb_z_wPVu8
Python 3 - Episode 25 - Working with binary files
https://youtu.be/ueMyoL1MGlg
Python 3 - Episode 26 - Working with JSON
https://youtu.be/JIqW1KGl9Zs
Python 3 - Episode 27 - Imports
https://youtu.be/s8goqLLLCbA
Python 3 - Episode 28 - Main function
https://youtu.be/ui0g0ZIJIFc
Python 3 - Episode 29 - Import madness
https://youtu.be/7tAym_vaB6A
Python 3 - Episode 30 - Introduction to classes
https://youtu.be/U40v3hciOzM
Python 3 - Episode 31 - Class Inheritance
https://youtu.be/-RKlrYt4qVw
Python 3 - Episode 32 - Multiple Inheritance
https://youtu.be/KLsv0CgYSAo
Python 3 - Episode 33 - Pet Shop Application
https://youtu.be/a4M0ySdqId8
Python 3 - Episode 34 - The undesrcore
https://youtu.be/SfbwAj54mL4
Python 3 - Episode 35 - Decorators
https://youtu.be/45O4lWI4LAY
Python 3 - Episode 36 - Iterators
https://youtu.be/61eSMbpmUgk
Python 3 - Episode 37 - Exceptions
https://youtu.be/g0JnUjBolA8
Python 3 - Episode 38 - Pickle
https://youtu.be/nwR1S_ge70s
Python 3 - Episode 39 - Map function
https://youtu.be/RgekiWhBUc0
Python 3 - Episode 40 - Filter function
https://youtu.be/COPDngImfKI
Python 3 - Episode 41 - Logging basics
https://youtu.be/SYecRmTeBOM
Python 3 - Episode 42 - Simple app, Dir Stats
https://youtu.be/eYivpebplDE
Python 3 - Episode 43 - Timers, intro to threads
https://youtu.be/CLvhMlpUyXI
Python 3 - Episode 44 - Thread basics
https://youtu.be/AIclIYDJ3zA
Python 3 - Episode 45 - Thread Pools
https://youtu.be/vajNHfG_ZEY
Python 3 - Episode 46 - Thread Locking
https://youtu.be/snPtNQccDLM
Python 3 - Episode 47 - Daemon threads
https://youtu.be/GULIawOoAm0
Python 3 - Episode 48 - Queues and Futures
https://youtu.be/s2JNiuNCJlk
Python 3 - Episode 49 - Intro to Multiprocessing
https://youtu.be/wuP-Esom0-c
Python 3 - Episode 50 - Multiprocess starting and stopping
https://youtu.be/v9-D7YOSyu4
Python 3 - Episode 51 - Multiprocess pool
https://youtu.be/Pzv30ecJoyo
Python 3 - Episode 52 - Async code
https://youtu.be/bPEgYoOm0bQ
Python 3 - Episode 53 - Producer and consumer
https://youtu.be/Qo6hBgsXAlk
Python 3 - Episode 54 - Communicating with processes
https://youtu.be/qvEOZMpwtf0
Python 3 - Episode 55 - Basic TCP Client
https://youtu.be/5V91veF7PUQ
Python 3 - Episode 56 - Basic TCP Server
https://youtu.be/La3cyCnpSC4
Python 3 - Episode 57 - Determine port availability
https://youtu.be/EtRelbO2yNg
Python 3 - Episode 58 - UDP Sockets
https://youtu.be/GqNbobpNQys
Python 3 - Episode 59 - Blocking vs Non Blocking Sockets
https://youtu.be/tWlJsUazb_I
Python 3 - Episode 60 - Example App: TCP Echo Server
https://youtu.be/jm9mgejjTtw
Python 3 - Episode 61 - DateTime is super easy to use
https://youtu.be/RVzJwdKH2rw
#pythonprogramming #python3 #pythonforbeginners
Like 👍, Comment ❤️ and Subscribe 📌 To Our Channel 👇</media:description>
<media:community>
<media:starRating count="2" average="5.00" min="1" max="5"/>
<media:statistics views="24"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:idhNcD9jtzE</id>
<yt:videoId>idhNcD9jtzE</yt:videoId>
<yt:channelId>UCo11jfMvmwivG6g3c9tfJqQ</yt:channelId>
<title>Python 3 Episode 7 Lists</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=idhNcD9jtzE"/>
<author>
<name>LeetCode Solutions</name>
<uri>https://www.youtube.com/channel/UCo11jfMvmwivG6g3c9tfJqQ</uri>
</author>
<published>2022-11-25T01:30:18+00:00</published>
<updated>2022-11-25T01:30:19+00:00</updated>
<media:group>
<media:title>Python 3 Episode 7 Lists</media:title>
<media:content url="https://www.youtube.com/v/idhNcD9jtzE?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/idhNcD9jtzE/hqdefault.jpg" width="480" height="360"/>
<media:description>Intro: (0:00)
What are lists: (0:05)
Creating a list: (1:38)
Index and positioning: (4:02)
Adding items (6:49)
Removing items (9:28)
Extending (15:00)
Sorting (16:43)
Making a copy (19:16)
Deleting (21:04)
Clearing elements (22:30)
Lists in lists (24:09)
Changing items: (28:56)
--------------------------------------
Python 3 - Episode 1 - No experience necessary
https://youtu.be/IbSXF7eT-AU
Python 3 - Episode 2 - Variables are something that changes
https://youtu.be/yZKbNOITHAU
Python 3 - Episode 3 - Comments, Boolean and Comparisons
https://youtu.be/UzHvQxBcF1Q
Python 3 - Episode 4 - Numbers and basic numeric operations
https://youtu.be/FnsRbFZqdQU
Python 3 - Episode 5 - What are strings
https://youtu.be/N3kE_RuUVt4
Python 3 - Episode 6 - Basic string operations
https://youtu.be/GMrDDqsqI8s
Python 3 - Episode 7 - Lists
https://youtu.be/idhNcD9jtzE
Python 3 - Episode 8 - Sets
https://youtu.be/qiEGFgcWzn4
Python 3 - Episode 9 - Tuples, fast and read only
https://youtu.be/N3VmRXcoLDk
Python 3 - Episode 10 - Dictionary, indexed with keys
https://youtu.be/nMUGkTsttDQ
Python 3 - Episode 11 - Flow control with IF, ELSE and ELIF
https://youtu.be/AC6WURKIgcU
Python 3 - Episode 12 - Flow control with While loops
https://youtu.be/XOpZrd_D8es
Python 3 - Episode 13 - For loop and range
https://youtu.be/vx04Yfkrms8
Python 3 - Episode 14 - Simple app, paint calculator
https://youtu.be/ybr-nTJJFDI
Python 3 - Episode 15 - Intro to functions
https://youtu.be/VM2gJpjNhZM
Python 3 - Episode 16 - Functions and scope
https://youtu.be/k22eKsflvHI
Python 3 - Episode 17 - Functions in depth
https://youtu.be/-6j1_hLbq3Y
Python 3 - Episode 18 - Packing and unpacking data
https://youtu.be/Wpbbf66gVDw
Python 3 - Episode 19 - Functions and arguments
https://youtu.be/PiJQhnbgRtU
Python 3 - Episode 20 - Global keyword
https://youtu.be/uXxmR17Yvrw
Python 3 - Episode 21 - Walrus operator
https://youtu.be/bIS5XdqjyLw
Python 3 - Episode 22 - Navigating folders
https://youtu.be/zRLHQQ2tkKU
Python 3 - Episode 23 - Reading a text file
https://youtu.be/jrtIfqGlAWo
Python 3 - Episode 24 - Write a text file
https://youtu.be/thb_z_wPVu8
Python 3 - Episode 25 - Working with binary files
https://youtu.be/ueMyoL1MGlg
Python 3 - Episode 26 - Working with JSON
https://youtu.be/JIqW1KGl9Zs
Python 3 - Episode 27 - Imports
https://youtu.be/s8goqLLLCbA
Python 3 - Episode 28 - Main function
https://youtu.be/ui0g0ZIJIFc
Python 3 - Episode 29 - Import madness
https://youtu.be/7tAym_vaB6A
Python 3 - Episode 30 - Introduction to classes
https://youtu.be/U40v3hciOzM
Python 3 - Episode 31 - Class Inheritance
https://youtu.be/-RKlrYt4qVw
Python 3 - Episode 32 - Multiple Inheritance
https://youtu.be/KLsv0CgYSAo
Python 3 - Episode 33 - Pet Shop Application
https://youtu.be/a4M0ySdqId8
Python 3 - Episode 34 - The undesrcore
https://youtu.be/SfbwAj54mL4
Python 3 - Episode 35 - Decorators
https://youtu.be/45O4lWI4LAY
Python 3 - Episode 36 - Iterators
https://youtu.be/61eSMbpmUgk
Python 3 - Episode 37 - Exceptions
https://youtu.be/g0JnUjBolA8
Python 3 - Episode 38 - Pickle
https://youtu.be/nwR1S_ge70s
Python 3 - Episode 39 - Map function
https://youtu.be/RgekiWhBUc0
Python 3 - Episode 40 - Filter function
https://youtu.be/COPDngImfKI
Python 3 - Episode 41 - Logging basics
https://youtu.be/SYecRmTeBOM
Python 3 - Episode 42 - Simple app, Dir Stats
https://youtu.be/eYivpebplDE
Python 3 - Episode 43 - Timers, intro to threads
https://youtu.be/CLvhMlpUyXI
Python 3 - Episode 44 - Thread basics
https://youtu.be/AIclIYDJ3zA
Python 3 - Episode 45 - Thread Pools
https://youtu.be/vajNHfG_ZEY
Python 3 - Episode 46 - Thread Locking
https://youtu.be/snPtNQccDLM
Python 3 - Episode 47 - Daemon threads
https://youtu.be/GULIawOoAm0
Python 3 - Episode 48 - Queues and Futures
https://youtu.be/s2JNiuNCJlk
Python 3 - Episode 49 - Intro to Multiprocessing
https://youtu.be/wuP-Esom0-c
Python 3 - Episode 50 - Multiprocess starting and stopping
https://youtu.be/v9-D7YOSyu4
Python 3 - Episode 51 - Multiprocess pool
https://youtu.be/Pzv30ecJoyo
Python 3 - Episode 52 - Async code
https://youtu.be/bPEgYoOm0bQ
Python 3 - Episode 53 - Producer and consumer
https://youtu.be/Qo6hBgsXAlk
Python 3 - Episode 54 - Communicating with processes
https://youtu.be/qvEOZMpwtf0
Python 3 - Episode 55 - Basic TCP Client
https://youtu.be/5V91veF7PUQ
Python 3 - Episode 56 - Basic TCP Server
https://youtu.be/La3cyCnpSC4
Python 3 - Episode 57 - Determine port availability
https://youtu.be/EtRelbO2yNg
Python 3 - Episode 58 - UDP Sockets
https://youtu.be/GqNbobpNQys
Python 3 - Episode 59 - Blocking vs Non Blocking Sockets
https://youtu.be/tWlJsUazb_I
Python 3 - Episode 60 - Example App: TCP Echo Server
https://youtu.be/jm9mgejjTtw
Python 3 - Episode 61 - DateTime is super easy to use
https://youtu.be/RVzJwdKH2rw
#pythonprogramming #python3 #pythonforbeginners
Like 👍, Comment ❤️ and Subscribe 📌 To Our Channel 👇</media:description>
<media:community>
<media:starRating count="0" average="0.00" min="1" max="5"/>
<media:statistics views="13"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:qiEGFgcWzn4</id>
<yt:videoId>qiEGFgcWzn4</yt:videoId>
<yt:channelId>UCo11jfMvmwivG6g3c9tfJqQ</yt:channelId>
<title>Python 3 - Episode 8 - Sets</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=qiEGFgcWzn4"/>
<author>
<name>LeetCode Solutions</name>
<uri>https://www.youtube.com/channel/UCo11jfMvmwivG6g3c9tfJqQ</uri>
</author>
<published>2022-11-25T04:30:13+00:00</published>
<updated>2022-11-25T04:30:13+00:00</updated>
<media:group>
<media:title>Python 3 - Episode 8 - Sets</media:title>
<media:content url="https://www.youtube.com/v/qiEGFgcWzn4?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/qiEGFgcWzn4/hqdefault.jpg" width="480" height="360"/>
<media:description>In this video series we will cover Python 3. This video talk about the set data type which is fast, unique and immutable.
Intro: (0:00)
What are sets: (0:05)
Creating a set: (1:31)
Adding items (3:38)
Removing items (5:08)
Can not change items (7:31)
----------------------------------------------
Python 3 - Episode 1 - No experience necessary
https://youtu.be/IbSXF7eT-AU
Python 3 - Episode 2 - Variables are something that changes
https://youtu.be/yZKbNOITHAU
Python 3 - Episode 3 - Comments, Boolean and Comparisons
https://youtu.be/UzHvQxBcF1Q
Python 3 - Episode 4 - Numbers and basic numeric operations
https://youtu.be/FnsRbFZqdQU
Python 3 - Episode 5 - What are strings
https://youtu.be/N3kE_RuUVt4
Python 3 - Episode 6 - Basic string operations
https://youtu.be/GMrDDqsqI8s
Python 3 - Episode 7 - Lists
https://youtu.be/idhNcD9jtzE
Python 3 - Episode 8 - Sets
https://youtu.be/qiEGFgcWzn4
Python 3 - Episode 9 - Tuples, fast and read only
https://youtu.be/N3VmRXcoLDk
Python 3 - Episode 10 - Dictionary, indexed with keys
https://youtu.be/nMUGkTsttDQ
Python 3 - Episode 11 - Flow control with IF, ELSE and ELIF
https://youtu.be/AC6WURKIgcU
Python 3 - Episode 12 - Flow control with While loops
https://youtu.be/XOpZrd_D8es
Python 3 - Episode 13 - For loop and range
https://youtu.be/vx04Yfkrms8
Python 3 - Episode 14 - Simple app, paint calculator
https://youtu.be/ybr-nTJJFDI
Python 3 - Episode 15 - Intro to functions
https://youtu.be/VM2gJpjNhZM
Python 3 - Episode 16 - Functions and scope
https://youtu.be/k22eKsflvHI
Python 3 - Episode 17 - Functions in depth
https://youtu.be/-6j1_hLbq3Y
Python 3 - Episode 18 - Packing and unpacking data
https://youtu.be/Wpbbf66gVDw
Python 3 - Episode 19 - Functions and arguments
https://youtu.be/PiJQhnbgRtU
Python 3 - Episode 20 - Global keyword
https://youtu.be/uXxmR17Yvrw
Python 3 - Episode 21 - Walrus operator
https://youtu.be/bIS5XdqjyLw
Python 3 - Episode 22 - Navigating folders
https://youtu.be/zRLHQQ2tkKU
Python 3 - Episode 23 - Reading a text file
https://youtu.be/jrtIfqGlAWo
Python 3 - Episode 24 - Write a text file
https://youtu.be/thb_z_wPVu8
Python 3 - Episode 25 - Working with binary files
https://youtu.be/ueMyoL1MGlg
Python 3 - Episode 26 - Working with JSON
https://youtu.be/JIqW1KGl9Zs
Python 3 - Episode 27 - Imports
https://youtu.be/s8goqLLLCbA
Python 3 - Episode 28 - Main function
https://youtu.be/ui0g0ZIJIFc
Python 3 - Episode 29 - Import madness
https://youtu.be/7tAym_vaB6A
Python 3 - Episode 30 - Introduction to classes
https://youtu.be/U40v3hciOzM
Python 3 - Episode 31 - Class Inheritance
https://youtu.be/-RKlrYt4qVw
Python 3 - Episode 32 - Multiple Inheritance
https://youtu.be/KLsv0CgYSAo
Python 3 - Episode 33 - Pet Shop Application
https://youtu.be/a4M0ySdqId8
Python 3 - Episode 34 - The undesrcore
https://youtu.be/SfbwAj54mL4
Python 3 - Episode 35 - Decorators
https://youtu.be/45O4lWI4LAY
Python 3 - Episode 36 - Iterators
https://youtu.be/61eSMbpmUgk
Python 3 - Episode 37 - Exceptions
https://youtu.be/g0JnUjBolA8
Python 3 - Episode 38 - Pickle
https://youtu.be/nwR1S_ge70s
Python 3 - Episode 39 - Map function
https://youtu.be/RgekiWhBUc0
Python 3 - Episode 40 - Filter function
https://youtu.be/COPDngImfKI
Python 3 - Episode 41 - Logging basics
https://youtu.be/SYecRmTeBOM
Python 3 - Episode 42 - Simple app, Dir Stats
https://youtu.be/eYivpebplDE
Python 3 - Episode 43 - Timers, intro to threads
https://youtu.be/CLvhMlpUyXI
Python 3 - Episode 44 - Thread basics
https://youtu.be/AIclIYDJ3zA
Python 3 - Episode 45 - Thread Pools
https://youtu.be/vajNHfG_ZEY
Python 3 - Episode 46 - Thread Locking
https://youtu.be/snPtNQccDLM
Python 3 - Episode 47 - Daemon threads
https://youtu.be/GULIawOoAm0
Python 3 - Episode 48 - Queues and Futures
https://youtu.be/s2JNiuNCJlk
Python 3 - Episode 49 - Intro to Multiprocessing
https://youtu.be/wuP-Esom0-c
Python 3 - Episode 50 - Multiprocess starting and stopping
https://youtu.be/v9-D7YOSyu4
Python 3 - Episode 51 - Multiprocess pool
https://youtu.be/Pzv30ecJoyo
Python 3 - Episode 52 - Async code
https://youtu.be/bPEgYoOm0bQ
Python 3 - Episode 53 - Producer and consumer
https://youtu.be/Qo6hBgsXAlk
Python 3 - Episode 54 - Communicating with processes
https://youtu.be/qvEOZMpwtf0
Python 3 - Episode 55 - Basic TCP Client
https://youtu.be/5V91veF7PUQ
Python 3 - Episode 56 - Basic TCP Server
https://youtu.be/La3cyCnpSC4
Python 3 - Episode 57 - Determine port availability
https://youtu.be/EtRelbO2yNg
Python 3 - Episode 58 - UDP Sockets
https://youtu.be/GqNbobpNQys
Python 3 - Episode 59 - Blocking vs Non Blocking Sockets
https://youtu.be/tWlJsUazb_I
Python 3 - Episode 60 - Example App: TCP Echo Server
https://youtu.be/jm9mgejjTtw
Python 3 - Episode 61 - DateTime is super easy to use
https://youtu.be/RVzJwdKH2rw
#pythonprogramming #python3 #pythonforbeginners
Like 👍, Comment ❤️ and Subscribe 📌 To Our Channel 👇</media:description>
<media:community>
<media:starRating count="0" average="0.00" min="1" max="5"/>
<media:statistics views="7"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:FnsRbFZqdQU</id>
<yt:videoId>FnsRbFZqdQU</yt:videoId>
<yt:channelId>UCo11jfMvmwivG6g3c9tfJqQ</yt:channelId>
<title>Python 3 - Episode 4 - Numbers and basic numeric operations</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=FnsRbFZqdQU"/>
<author>
<name>LeetCode Solutions</name>
<uri>https://www.youtube.com/channel/UCo11jfMvmwivG6g3c9tfJqQ</uri>
</author>
<published>2022-11-24T12:30:08+00:00</published>
<updated>2022-11-24T12:30:09+00:00</updated>
<media:group>
<media:title>Python 3 - Episode 4 - Numbers and basic numeric operations</media:title>
<media:content url="https://www.youtube.com/v/FnsRbFZqdQU?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/FnsRbFZqdQU/hqdefault.jpg" width="480" height="360"/>
<media:description>Intro: (0:00)
Number Data Types: (0:34)
basic Numerical Operations (6:36)
--------------------------------------------------------
Python 3 - Episode 1 - No experience necessary
https://youtu.be/IbSXF7eT-AU
Python 3 - Episode 2 - Variables are something that changes
https://youtu.be/yZKbNOITHAU
Python 3 - Episode 3 - Comments, Boolean and Comparisons
https://youtu.be/UzHvQxBcF1Q
Python 3 - Episode 4 - Numbers and basic numeric operations
https://youtu.be/FnsRbFZqdQU
Python 3 - Episode 5 - What are strings
https://youtu.be/N3kE_RuUVt4
Python 3 - Episode 6 - Basic string operations
https://youtu.be/GMrDDqsqI8s
Python 3 - Episode 7 - Lists
https://youtu.be/idhNcD9jtzE
Python 3 - Episode 8 - Sets
https://youtu.be/qiEGFgcWzn4
Python 3 - Episode 9 - Tuples, fast and read only
https://youtu.be/N3VmRXcoLDk
Python 3 - Episode 10 - Dictionary, indexed with keys
https://youtu.be/nMUGkTsttDQ
Python 3 - Episode 11 - Flow control with IF, ELSE and ELIF
https://youtu.be/AC6WURKIgcU
Python 3 - Episode 12 - Flow control with While loops
https://youtu.be/XOpZrd_D8es
Python 3 - Episode 13 - For loop and range
https://youtu.be/vx04Yfkrms8
Python 3 - Episode 14 - Simple app, paint calculator
https://youtu.be/ybr-nTJJFDI
Python 3 - Episode 15 - Intro to functions
https://youtu.be/VM2gJpjNhZM
Python 3 - Episode 16 - Functions and scope
https://youtu.be/k22eKsflvHI
Python 3 - Episode 17 - Functions in depth
https://youtu.be/-6j1_hLbq3Y
Python 3 - Episode 18 - Packing and unpacking data
https://youtu.be/Wpbbf66gVDw
Python 3 - Episode 19 - Functions and arguments
https://youtu.be/PiJQhnbgRtU
Python 3 - Episode 20 - Global keyword
https://youtu.be/uXxmR17Yvrw
Python 3 - Episode 21 - Walrus operator
https://youtu.be/bIS5XdqjyLw
Python 3 - Episode 22 - Navigating folders
https://youtu.be/zRLHQQ2tkKU
Python 3 - Episode 23 - Reading a text file
https://youtu.be/jrtIfqGlAWo
Python 3 - Episode 24 - Write a text file
https://youtu.be/thb_z_wPVu8
Python 3 - Episode 25 - Working with binary files
https://youtu.be/ueMyoL1MGlg
Python 3 - Episode 26 - Working with JSON
https://youtu.be/JIqW1KGl9Zs
Python 3 - Episode 27 - Imports
https://youtu.be/s8goqLLLCbA
Python 3 - Episode 28 - Main function
https://youtu.be/ui0g0ZIJIFc
Python 3 - Episode 29 - Import madness
https://youtu.be/7tAym_vaB6A
Python 3 - Episode 30 - Introduction to classes
https://youtu.be/U40v3hciOzM
Python 3 - Episode 31 - Class Inheritance
https://youtu.be/-RKlrYt4qVw
Python 3 - Episode 32 - Multiple Inheritance
https://youtu.be/KLsv0CgYSAo
Python 3 - Episode 33 - Pet Shop Application
https://youtu.be/a4M0ySdqId8
Python 3 - Episode 34 - The undesrcore
https://youtu.be/SfbwAj54mL4
Python 3 - Episode 35 - Decorators
https://youtu.be/45O4lWI4LAY
Python 3 - Episode 36 - Iterators
https://youtu.be/61eSMbpmUgk
Python 3 - Episode 37 - Exceptions
https://youtu.be/g0JnUjBolA8
Python 3 - Episode 38 - Pickle
https://youtu.be/nwR1S_ge70s
Python 3 - Episode 39 - Map function
https://youtu.be/RgekiWhBUc0
Python 3 - Episode 40 - Filter function
https://youtu.be/COPDngImfKI
Python 3 - Episode 41 - Logging basics
https://youtu.be/SYecRmTeBOM
Python 3 - Episode 42 - Simple app, Dir Stats
https://youtu.be/eYivpebplDE
Python 3 - Episode 43 - Timers, intro to threads
https://youtu.be/CLvhMlpUyXI
Python 3 - Episode 44 - Thread basics
https://youtu.be/AIclIYDJ3zA
Python 3 - Episode 45 - Thread Pools
https://youtu.be/vajNHfG_ZEY
Python 3 - Episode 46 - Thread Locking
https://youtu.be/snPtNQccDLM
Python 3 - Episode 47 - Daemon threads
https://youtu.be/GULIawOoAm0
Python 3 - Episode 48 - Queues and Futures
https://youtu.be/s2JNiuNCJlk
Python 3 - Episode 49 - Intro to Multiprocessing
https://youtu.be/wuP-Esom0-c
Python 3 - Episode 50 - Multiprocess starting and stopping
https://youtu.be/v9-D7YOSyu4
Python 3 - Episode 51 - Multiprocess pool
https://youtu.be/Pzv30ecJoyo
Python 3 - Episode 52 - Async code
https://youtu.be/bPEgYoOm0bQ
Python 3 - Episode 53 - Producer and consumer
https://youtu.be/Qo6hBgsXAlk
Python 3 - Episode 54 - Communicating with processes
https://youtu.be/qvEOZMpwtf0
Python 3 - Episode 55 - Basic TCP Client
https://youtu.be/5V91veF7PUQ
Python 3 - Episode 56 - Basic TCP Server
https://youtu.be/La3cyCnpSC4
Python 3 - Episode 57 - Determine port availability
https://youtu.be/EtRelbO2yNg
Python 3 - Episode 58 - UDP Sockets
https://youtu.be/GqNbobpNQys
Python 3 - Episode 59 - Blocking vs Non Blocking Sockets
https://youtu.be/tWlJsUazb_I
Python 3 - Episode 60 - Example App: TCP Echo Server
https://youtu.be/jm9mgejjTtw
Python 3 - Episode 61 - DateTime is super easy to use
https://youtu.be/RVzJwdKH2rw
#pythonprogramming #python3 #pythonforbeginners
Like 👍, Comment ❤️ and Subscribe 📌 To Our Channel 👇</media:description>
<media:community>
<media:starRating count="2" average="5.00" min="1" max="5"/>
<media:statistics views="15"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:N3kE_RuUVt4</id>
<yt:videoId>N3kE_RuUVt4</yt:videoId>
<yt:channelId>UCo11jfMvmwivG6g3c9tfJqQ</yt:channelId>
<title>Python 3 - Episode 5 - What are strings</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=N3kE_RuUVt4"/>
<author>
<name>LeetCode Solutions</name>
<uri>https://www.youtube.com/channel/UCo11jfMvmwivG6g3c9tfJqQ</uri>
</author>
<published>2022-11-24T13:30:07+00:00</published>
<updated>2022-11-24T13:30:07+00:00</updated>
<media:group>
<media:title>Python 3 - Episode 5 - What are strings</media:title>
<media:content url="https://www.youtube.com/v/N3kE_RuUVt4?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/N3kE_RuUVt4/hqdefault.jpg" width="480" height="360"/>
<media:description>In this video series we will cover Python 3. This video talk about the basics of strings. Strings are a complex data type so we will split this into two videos.
Intro: (0:00)
What are strings: (0:04)
How to make strings: (2:26)
Under the hood: (6:53)
Escape characters: (9:23)
Formatting avoid errors: (13:49)
-----------------------------------------------------
Python 3 - Episode 1 - No experience necessary
https://youtu.be/IbSXF7eT-AU
Python 3 - Episode 2 - Variables are something that changes
https://youtu.be/yZKbNOITHAU
Python 3 - Episode 3 - Comments, Boolean and Comparisons
https://youtu.be/UzHvQxBcF1Q
Python 3 - Episode 4 - Numbers and basic numeric operations
https://youtu.be/FnsRbFZqdQU
Python 3 - Episode 5 - What are strings
https://youtu.be/N3kE_RuUVt4
Python 3 - Episode 6 - Basic string operations
https://youtu.be/GMrDDqsqI8s
Python 3 - Episode 7 - Lists
https://youtu.be/idhNcD9jtzE
Python 3 - Episode 8 - Sets
https://youtu.be/qiEGFgcWzn4
Python 3 - Episode 9 - Tuples, fast and read only
https://youtu.be/N3VmRXcoLDk
Python 3 - Episode 10 - Dictionary, indexed with keys
https://youtu.be/nMUGkTsttDQ
Python 3 - Episode 11 - Flow control with IF, ELSE and ELIF
https://youtu.be/AC6WURKIgcU
Python 3 - Episode 12 - Flow control with While loops
https://youtu.be/XOpZrd_D8es
Python 3 - Episode 13 - For loop and range
https://youtu.be/vx04Yfkrms8