Skip to content

Commit 29192b5

Browse files
author
Shehab Abdel-Salam
committed
0 -> 92 exercises
1 parent 7bc3b1f commit 29192b5

File tree

107 files changed

+258
-182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+258
-182
lines changed

README.md

Lines changed: 3 additions & 3 deletions

chapters/chapter01_intro/exercises/exercise_ch1_01.py renamed to chapters/chapter01_intro/exercises/exercise_00.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Exercise 01_01 - Hello World!
1+
# Exercise 00 - Hello World!
22
# Fill in the blank below to pass the test.
33

44

chapters/chapter01_intro/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# You can also import functions from the exercises and use them here.
66
# e.g., uncomment the line below and add `print(hello_python())` to main() function.
7-
# from exercises.exercise_ch1_01 import hello_python
7+
# from exercises.exercise_00 import hello_python
88

99

1010
def main():
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from ..exercises.exercise_ch1_01 import hello_python
1+
from ..exercises.exercise_00 import hello_python
22

33

4-
def test_ch01_e01():
4+
def test_e00():
55
assert hello_python() == "I am ready to learn Python!"

0 commit comments

Comments
 (0)