Skip to content

Commit

Permalink
[SLUG] Transferring changes from Slug as of 2023-04-21 14:08:19 +0100.
Browse files Browse the repository at this point in the history
  • Loading branch information
neoeno committed Apr 21, 2023
1 parent e693f43 commit 1c56f97
Show file tree
Hide file tree
Showing 22 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion 021_two_step.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 022_strings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

# A string is a sequence of characters (letters).

Expand Down
2 changes: 1 addition & 1 deletion 023_string_indexing.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 024_string_operations.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 025_string_concatenation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 026_ifs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 027_comparison.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 028_logic.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 029_lists.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

# When looking at strings, I mentioned the concept of data
# structures.
Expand Down
2 changes: 1 addition & 1 deletion 030_list_indexing.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 031_list_modification.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 032_while_loops.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 033_for_loops.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

# There's another kind of loop — the `for` loop.

Expand Down
2 changes: 1 addition & 1 deletion 034_summarising.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 035_mapping.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 036_filtering.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 037_dicts.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

# Here are the data structures we've met so far:

Expand Down
2 changes: 1 addition & 1 deletion 038_dict_operations.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 039_challenge_1_example.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

# Congratulations! You've covered all of the key syntax,
# concepts, and ideas necessary to succeed in your
Expand Down
2 changes: 1 addition & 1 deletion 040_challenge_1_exercise.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

from lib.helpers import check_that_these_are_equal

Expand Down
2 changes: 1 addition & 1 deletion 041_challenge_2_example.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

# Nice work on that last one! You might well want to
# consider taking the assessment at this point.
Expand Down
2 changes: 1 addition & 1 deletion 042_challenge_2_exercise.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Video alternative: ...
# Video alternative: https://github.com/makersacademy/intro-to-python/blob/main/999_video_index.md

# So far you've spent a lot of time writing new programs.

Expand Down

0 comments on commit 1c56f97

Please sign in to comment.