diff --git a/Python/fizzBuzz_lo_maxwell.py b/Python/fizzBuzz_lo_maxwell.py new file mode 100644 index 0000000..cd92048 --- /dev/null +++ b/Python/fizzBuzz_lo_maxwell.py @@ -0,0 +1,4 @@ +def main(): + print (["Fizz"*(not i%3) + "Buzz"*(not i%5) or i for i in range (1,101)]) + +main()