diff --git a/Chapter_04/countingToTwenty.py b/Chapter_04/countingToTwenty.py new file mode 100644 index 0000000..3d9bcaf --- /dev/null +++ b/Chapter_04/countingToTwenty.py @@ -0,0 +1,6 @@ +# Excercise 4-3 Counting to Twenty +# Learning Objective: Use for loop and range method. + +for number in range(1, 21): + print(number) +