Intro Python: Fundamentals
by
Reuven M. Lerner
Login
Buy for $250
Intro Python: Fundamentals
What you need to start with Python: Syntax, loops, and data structures.
syllabus.pdf
21.6 KB
Preview
00 Welcome.mov
3 mins
Preview
Section 1: Introduction
01 Introduction.mp4
13 mins
Get access
02 Variable assignment.mp4
6 mins
Get access
03 User input.mp4
6 mins
Preview
04 Comments.mp4
6 mins
Get access
05 Conditionals.mp4
10 mins
Get access
06 Complex conditions.mp4
8 mins
Get access
07 Exercise 1 -- weather reaction.mp4
3 mins
Get access
08 Solution 1 -- weather reaction.mp4
3 mins
Get access
Intro Python, section 1.ipynb
13.8 KB
Get access
Section 2: Basic data types
09 None.mp4
8 mins
Get access
10 True, False, and boolean context.mp4
9 mins
Get access
11 Integers.mp4
7 mins
Get access
12 Max int?.mp4
4 mins
Preview
13 Converting to ints.mp4
6 mins
Get access
14 Exercise 2- Number guessing game.mp4
5 mins
Get access
15 Solution 2- Number guessing game.mp4
4 mins
Get access
16 Hex, oct, and bin.mp4
7 mins
Preview
17 Floats.mp4
8 mins
Get access
Intro Python, section 2.ipynb
40.1 KB
Get access
Section 3: Strings
strings-syllabus.pdf
15.6 KB
Preview
18 Intro to strings.mp4
10 mins
Get access
19 Backslashes.mp4
7 mins
Get access
20 Raw strings.mp4
6 mins
Preview
21 Slices.mp4
6 mins
Get access
22 Searching with "in".mp4
2 mins
Get access
23 Exercise 3 -- Pig Latin.mp4
4 mins
Get access
24 Solution 3 -- Pig Latin.mp4
5 mins
Get access
25 String methods.mp4
14 mins
Get access
26 Triple-quoted strings.mp4
7 mins
Get access
27 Bytes and characters.mp4
8 mins
Get access
28 str.format and f-strings.mp4
10 mins
Get access
29 print function options.mp4
4 mins
Get access
Intro Python, section 3.ipynb
55.1 KB
Get access
Section 4: Loops
loops-syllabus.pdf
24.8 KB
Preview
Intro Python, section 4.ipynb
11.3 KB
Get access
30 for loops.mp4
6 mins
Get access
31 indexes and enumerate.mp4
5 mins
Get access
32 range.mp4
3 mins
Get access
33 Exercise 4 -- loop exercises.mp4
2 mins
Get access
34 Solution 4 -- loop exercises.mp4
5 mins
Get access
35 break and continue.mp4
4 mins
Get access
36 else on loops.mp4
5 mins
Get access
37 while loops.mp4
10 mins
Get access
Section 5: Lists
lists-tuples-syllabus.pdf
17 KB
Preview
Intro Python, section 5.ipynb
57.6 KB
Get access
38 lists.mp4
10 mins
Get access
39 Assignment and lists.mp4
4 mins
Get access
40 append.mp4
4 mins
Get access
41 Exercise 5 -- sum and mean of numbers.mp4
2 mins
Get access
42 Solution 5.mp4
3 mins
Get access
43 extend and +=.mp4
4 mins
Get access
44 advanced inserting into lists.mp4
4 mins
Get access
45 removing from a list.mp4
4 mins
Get access
46 stacks and queues.mp4
5 mins
Get access
47 iterating over lists.mp4
5 mins
Get access
48 range.mp4
6 mins
Get access
49 str.split.mp4
7 mins
Get access
50 str.join.mp4
5 mins
Get access
51 Exercise 6 -- Pig Latin sentence.mp4
2 mins
Get access
52 Solution 6 -- Pig Latin sentence.mp4
6 mins
Get access
53 Adding to strings, adding to lists.mp4
6 mins
Get access
54 sorting.mp4
9 mins
Get access
Section 6: Tuples
55 Intro to tuples.mp4
6 mins
Get access
56 Tuples are immutable.mp4
5 mins
Get access
57 Tuple creation trickiness.mp4
7 mins
Get access
58 Unpacking.mp4
6 mins
Get access
59 Convering to-from tuples.mp4
4 mins
Get access
60 Sorting tuples.mp4
3 mins
Get access
61 Exercise 7 -- people.mp4
2 mins
Get access
62 Solution 7 -- people.mp4
7 mins
Get access
Section 7: Dictionaries
dict-syllabus.pdf
17.2 KB
Preview
63 Intro to dicts.mp4
9 mins
Get access
64 Exercise 8 -- restaurant.mp4
3 mins
Get access
65 Solution 8 -- restaurant.mp4
5 mins
Get access
66 get and setdefault.mp4
6 mins
Get access
67 iterating over a dict.mp4
4 mins
Get access
68 Exercise 9 -- Rainfall.mp4
3 mins
Get access
69 Solution 9 -- Rainfall.mp4
8 mins
Get access
70 How do dicts work?.mp4
10 mins
Get access
Intro Python, section 7.ipynb
44.7 KB
Get access
Section 8: Sets
71 Intro to sets.mp4
5 mins
Get access
72 Lists vs. sets.mp4
3 mins
Get access
73 Adding to and removing from sets.mp4
4 mins
Get access
74 Exercise 10 -- dollar store.mp4
2 mins
Get access
75 Solution 10 -- dollar store.mp4
3 mins
Get access
76 Set operations.mp4
7 mins
Get access
77 Exercise 11 -- spelling bee.mp4
2 mins
Get access
78 Solution 11 -- spelling bee.mp4
3 mins
Get access
Conclusion
79 Conclusion.mov
3 mins
Get access
PDFs of slides
01 Introduction.pdf
2.99 MB
Get access
02 Simple data types (none, boolean, int, string).pdf
92.7 KB
Get access
03 Lists, tuples, sequences.pdf
105 KB
Get access
04 Dictionaries and sets.pdf
52 KB
Get access
Table of contents
Intro Python: Fundamentals
by
Reuven M. Lerner
ui-24px-outline-1_lock
Contents
Contents
Draft
syllabus.pdf
Draft
syllabus.pdf
Draft
00 Welcome.mov
Draft
00 Welcome.mov
ui-24px-outline-1_lock
Section 1: Introduction
Section 1: Introduction
Draft
01 Introduction.mp4
Draft
01 Introduction.mp4
Draft
02 Variable assignment.mp4
Draft
02 Variable assignment.mp4
Draft
03 User input.mp4
Draft
03 User input.mp4
Draft
04 Comments.mp4
Draft
04 Comments.mp4
Draft
05 Conditionals.mp4
Draft
05 Conditionals.mp4
Draft
06 Complex conditions.mp4
Draft
06 Complex conditions.mp4
Draft
07 Exercise 1 -- weather reaction.mp4
Draft
07 Exercise 1 -- weather reaction.mp4
Draft
08 Solution 1 -- weather reaction.mp4
Draft
08 Solution 1 -- weather reaction.mp4
Draft
Intro Python, section 1.ipynb
Draft
Intro Python, section 1.ipynb
ui-24px-outline-1_lock
Section 2: Basic data types
Section 2: Basic data types
Draft
09 None.mp4
Draft
09 None.mp4
Draft
10 True, False, and boolean context.mp4
Draft
10 True, False, and boolean context.mp4
Draft
11 Integers.mp4
Draft
11 Integers.mp4
Draft
12 Max int?.mp4
Draft
12 Max int?.mp4
Draft
13 Converting to ints.mp4
Draft
13 Converting to ints.mp4
Draft
14 Exercise 2- Number guessing game.mp4
Draft
14 Exercise 2- Number guessing game.mp4
Draft
15 Solution 2- Number guessing game.mp4
Draft
15 Solution 2- Number guessing game.mp4
Draft
16 Hex, oct, and bin.mp4
Draft
16 Hex, oct, and bin.mp4
Draft
17 Floats.mp4
Draft
17 Floats.mp4
Draft
Intro Python, section 2.ipynb
Draft
Intro Python, section 2.ipynb
ui-24px-outline-1_lock
Section 3: Strings
Section 3: Strings
Draft
strings-syllabus.pdf
Draft
strings-syllabus.pdf
Draft
18 Intro to strings.mp4
Draft
18 Intro to strings.mp4
Draft
19 Backslashes.mp4
Draft
19 Backslashes.mp4
Draft
20 Raw strings.mp4
Draft
20 Raw strings.mp4
Draft
21 Slices.mp4
Draft
21 Slices.mp4
Draft
22 Searching with "in".mp4
Draft
22 Searching with "in".mp4
Draft
23 Exercise 3 -- Pig Latin.mp4
Draft
23 Exercise 3 -- Pig Latin.mp4
Draft
24 Solution 3 -- Pig Latin.mp4
Draft
24 Solution 3 -- Pig Latin.mp4
Draft
25 String methods.mp4
Draft
25 String methods.mp4
Draft
26 Triple-quoted strings.mp4
Draft
26 Triple-quoted strings.mp4
Draft
27 Bytes and characters.mp4
Draft
27 Bytes and characters.mp4
Draft
28 str.format and f-strings.mp4
Draft
28 str.format and f-strings.mp4
Draft
29 print function options.mp4
Draft
29 print function options.mp4
Draft
Intro Python, section 3.ipynb
Draft
Intro Python, section 3.ipynb
ui-24px-outline-1_lock
Section 4: Loops
Section 4: Loops
Draft
loops-syllabus.pdf
Draft
loops-syllabus.pdf
Draft
Intro Python, section 4.ipynb
Draft
Intro Python, section 4.ipynb
Draft
30 for loops.mp4
Draft
30 for loops.mp4
Draft
31 indexes and enumerate.mp4
Draft
31 indexes and enumerate.mp4
Draft
32 range.mp4
Draft
32 range.mp4
Draft
33 Exercise 4 -- loop exercises.mp4
Draft
33 Exercise 4 -- loop exercises.mp4
Draft
34 Solution 4 -- loop exercises.mp4
Draft
34 Solution 4 -- loop exercises.mp4
Draft
35 break and continue.mp4
Draft
35 break and continue.mp4
Draft
36 else on loops.mp4
Draft
36 else on loops.mp4
Draft
37 while loops.mp4
Draft
37 while loops.mp4
ui-24px-outline-1_lock
Section 5: Lists
Section 5: Lists
Draft
lists-tuples-syllabus.pdf
Draft
lists-tuples-syllabus.pdf
Draft
Intro Python, section 5.ipynb
Draft
Intro Python, section 5.ipynb
Draft
38 lists.mp4
Draft
38 lists.mp4
Draft
39 Assignment and lists.mp4
Draft
39 Assignment and lists.mp4
Draft
40 append.mp4
Draft
40 append.mp4
Draft
41 Exercise 5 -- sum and mean of numbers.mp4
Draft
41 Exercise 5 -- sum and mean of numbers.mp4
Draft
42 Solution 5.mp4
Draft
42 Solution 5.mp4
Draft
43 extend and +=.mp4
Draft
43 extend and +=.mp4
Draft
44 advanced inserting into lists.mp4
Draft
44 advanced inserting into lists.mp4
Draft
45 removing from a list.mp4
Draft
45 removing from a list.mp4
Draft
46 stacks and queues.mp4
Draft
46 stacks and queues.mp4
Draft
47 iterating over lists.mp4
Draft
47 iterating over lists.mp4
Draft
48 range.mp4
Draft
48 range.mp4
Draft
49 str.split.mp4
Draft
49 str.split.mp4
Draft
50 str.join.mp4
Draft
50 str.join.mp4
Draft
51 Exercise 6 -- Pig Latin sentence.mp4
Draft
51 Exercise 6 -- Pig Latin sentence.mp4
Draft
52 Solution 6 -- Pig Latin sentence.mp4
Draft
52 Solution 6 -- Pig Latin sentence.mp4
Draft
53 Adding to strings, adding to lists.mp4
Draft
53 Adding to strings, adding to lists.mp4
Draft
54 sorting.mp4
Draft
54 sorting.mp4
ui-24px-outline-1_lock
Section 6: Tuples
Section 6: Tuples
Draft
55 Intro to tuples.mp4
Draft
55 Intro to tuples.mp4
Draft
56 Tuples are immutable.mp4
Draft
56 Tuples are immutable.mp4
Draft
57 Tuple creation trickiness.mp4
Draft
57 Tuple creation trickiness.mp4
Draft
58 Unpacking.mp4
Draft
58 Unpacking.mp4
Draft
59 Convering to-from tuples.mp4
Draft
59 Convering to-from tuples.mp4
Draft
60 Sorting tuples.mp4
Draft
60 Sorting tuples.mp4
Draft
61 Exercise 7 -- people.mp4
Draft
61 Exercise 7 -- people.mp4
Draft
62 Solution 7 -- people.mp4
Draft
62 Solution 7 -- people.mp4
ui-24px-outline-1_lock
Section 7: Dictionaries
Section 7: Dictionaries
Draft
dict-syllabus.pdf
Draft
dict-syllabus.pdf
Draft
63 Intro to dicts.mp4
Draft
63 Intro to dicts.mp4
Draft
64 Exercise 8 -- restaurant.mp4
Draft
64 Exercise 8 -- restaurant.mp4
Draft
65 Solution 8 -- restaurant.mp4
Draft
65 Solution 8 -- restaurant.mp4
Draft
66 get and setdefault.mp4
Draft
66 get and setdefault.mp4
Draft
67 iterating over a dict.mp4
Draft
67 iterating over a dict.mp4
Draft
68 Exercise 9 -- Rainfall.mp4
Draft
68 Exercise 9 -- Rainfall.mp4
Draft
69 Solution 9 -- Rainfall.mp4
Draft
69 Solution 9 -- Rainfall.mp4
Draft
70 How do dicts work?.mp4
Draft
70 How do dicts work?.mp4
Draft
Intro Python, section 7.ipynb
Draft
Intro Python, section 7.ipynb
ui-24px-outline-1_lock
Section 8: Sets
Section 8: Sets
Draft
71 Intro to sets.mp4
Draft
71 Intro to sets.mp4
Draft
72 Lists vs. sets.mp4
Draft
72 Lists vs. sets.mp4
Draft
73 Adding to and removing from sets.mp4
Draft
73 Adding to and removing from sets.mp4
Draft
74 Exercise 10 -- dollar store.mp4
Draft
74 Exercise 10 -- dollar store.mp4
Draft
75 Solution 10 -- dollar store.mp4
Draft
75 Solution 10 -- dollar store.mp4
Draft
76 Set operations.mp4
Draft
76 Set operations.mp4
Draft
77 Exercise 11 -- spelling bee.mp4
Draft
77 Exercise 11 -- spelling bee.mp4
Draft
78 Solution 11 -- spelling bee.mp4
Draft
78 Solution 11 -- spelling bee.mp4
ui-24px-outline-1_lock
Conclusion
Conclusion
Draft
79 Conclusion.mov
Draft
79 Conclusion.mov
ui-24px-outline-1_lock
PDFs of slides
PDFs of slides
Draft
01 Introduction.pdf
Draft
01 Introduction.pdf
Draft
02 Simple data types (none, boolean, int, string).pdf
Draft
02 Simple data types (none, boolean, int, string).pdf
Draft
03 Lists, tuples, sequences.pdf
Draft
03 Lists, tuples, sequences.pdf
Draft
04 Dictionaries and sets.pdf
Draft
04 Dictionaries and sets.pdf
Welcome!
Enter your info below to login.
Your email
Your password
Login
Forgot your password?