diff --git a/02_challenge/02_challenge.py b/02_challenge/02_challenge.py new file mode 100644 index 0000000..b41cd50 --- /dev/null +++ b/02_challenge/02_challenge.py @@ -0,0 +1,26 @@ +""" +We will use this script to teach Python to absolute beginners +The script is an example of Fizz-Buzz implemented in Python + +The FizzBuzz problem: +For all integers between 1 and 99 (include both): + # print fizz for multiples of 3 + # print buzz for multiples of 5 + # print fizzbuzz for multiples of 3 and 5" +""" + +def fizzbuzz(max_num): + "This method implements FizzBuzz" + # Google for 'range in python' to see what it does + for i in range(1,max_num): + # % or modulo division gives you the remainder + if i%3==0 and i%5==0: + print(i,"fizzbuzz") + elif i%3==0: + print(i,"fizz") + elif i%5==0: + print(i,"Buzz") + +#----START OF SCRIPT +if __name__=='__main__': + fizzbuzz() diff --git a/02_challenge/02_missing_argument.png b/02_challenge/02_missing_argument.png new file mode 100644 index 0000000..bd8221f Binary files /dev/null and b/02_challenge/02_missing_argument.png differ diff --git a/02_challenge/02_readme.md b/02_challenge/02_readme.md new file mode 100644 index 0000000..e69de29