(x)
| 1 | if __name__ == "__main__": |
| 2 | # not possible as lambda |
| 3 | def fizz_buzz(x): |
| 4 | if x % 15 == 0: |
| 5 | print("FizzBuzz") |
| 6 | elif x % 3 == 0: |
| 7 | print("Fizz") |
| 8 | elif x % 5 == 0: |
| 9 | print("Buzz") |
| 10 | else: |
| 11 | print(x) |
| 12 | |
| 13 | for i in range(1, 16): |
| 14 | fizz_buzz(i) |
no test coverage detected