User contributions for TheSpiderNinjas

A user with 93 edits. Account created on 16 April 2025.
Jump to navigation Jump to search
Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)

19 October 2025

  • 06:0106:01, 19 October 2025 diff hist +529 N Non-Loop FizzBuzzCreated page with "'''Non-Loop FizzBuzz''' is like FizzBuzz but instead of doing a range of number you indefinitely ask the user for input and then print the FizzBuzz number. == Example == === Code: === <pre> while True: i = int(input("Enter a number: ")) if i % 15 == 0: print("FizzBuzz") elif i % 5 == 0: print("Buzz") elif i % 3 == 0: print("Fizz") else: print(i) </pre> === Output: === <pre> Enter a number: 4 4 Enter a number: 15 FizzBuzz Enter a number: 1 1..."

16 October 2025

6 October 2025

5 October 2025

(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)