Python Forum
Beginner Python Question: FIzz Buzz using while loop
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Beginner Python Question: FIzz Buzz using while loop
#1
Hello,

Having an issue with the Fizz Buzz challenge using the While Loop. Any help would be greatly appreciated. Please note I HAVE TO USE the while loop. Any help would be much appreciated!

the 2 issues are:
1. I cannot get past the first conditional ( keeps printing "foobarbaz")
2. I cannot end the loop.

MAXVAL = 30 
while (i < MAXVAL+1):
    if i % 2 == 0 and i % 3 == 0 and i % 5 == 0:
        print ('foobarbaz')
    elif i % 2 == 0 and i % 3 == 0:
        print ('foobar')
    elif i % 3 == 0 and i % 5 == 0:
        print("barbaz")
    elif i % 2 == 0 and i % 5 == 0:
        print('foobaz')
    # If the number is divisible by 2, print the word bar 
    elif i % 2 == 0:
        print('foo')
    # If the number is divisible by 3, print the word bar
    elif i % 3 == 0:
        print('bar')
    #If the number is divisible by 5, print the word baz
    elif i % 5 == 0:
        print('baz')
           #If the number is not divisible by 2,3 or 5, do not print a string
    elif  i % 2 == 1 or i % 3 == 1 or i % 5 == 1:
        print ()
Reply


Messages In This Thread
Beginner Python Question: FIzz Buzz using while loop - by camoyn13 - Sep-20-2022, 03:53 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Many iterations for loop question adesimone 9 2,081 Nov-12-2022, 07:08 PM
Last Post: deanhystad
  Please check whether the code about the for loop question is correct. (SyntaxError) lilliancsk01 10 2,899 Nov-08-2022, 01:25 PM
Last Post: deanhystad
  Repeat question (for loop) rs74 7 6,737 Jun-17-2020, 03:17 PM
Last Post: rs74
  Question about running comparisons through loop from input value Sunioj 2 2,500 Oct-15-2019, 03:15 PM
Last Post: jefsummers
  *Ultra beginner math question Markg2 2 2,420 Apr-21-2019, 11:24 PM
Last Post: Markg2
  Beginner Python Homework Question (Calculate Gross Pay) matchamochi7 4 5,853 Nov-02-2018, 01:06 PM
Last Post: buran
  Beginner's String Operation question docboy 6 3,708 Sep-30-2018, 05:49 PM
Last Post: j.crater
  while loop question Tripler 4 3,094 Jul-24-2018, 06:37 AM
Last Post: buran
  Loop question kraven 3 3,790 Sep-10-2017, 07:31 AM
Last Post: wavic
  Question about loop Pires 4 3,709 Jul-23-2017, 03:01 AM
Last Post: Pires

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020