FizzBuzz

  • + 10 comments

    My answer is coming the same as it should be, but it still says Wrong Answer. Here is my code:-> for x in range(1,101): if x%3 == 0: print("Fizz") if x%5 == 0: print("Buzz") elif x%5 == 0: print("Buzz") else: print(x) ###Please let me know asap what is the problem?????