SL problem 😭😭I want to get my python degree but 4 of 10 questions do not work correctly. I don't know why 😭😭
One of this simple questions My code x= int(input()) xx=x%2 if xx !=0: print(xx) if x % 3 == 0: print("Solo") if x % 5 == 0: print("Learn") elif x % 3 == 0 or x % 5 == 0: print("SoloLearn") Sololern question FizzBuzz is a well known programming assignment, asked during interviews. The given code solves the FizzBuzz problem and uses the words "Solo" and "Learn" instead of "Fizz" and "Buzz". It takes an input n and outputs the numbers from 1 to n. For each multiple of 3, print "Solo" instead of the number. For each multiple of 5, prints "Learn" instead of the number. For numbers which are multiples of both 3 and 5, output "SoloLearn". You need to change the code to skip the even numbers, so that the logic only applies to odd numbers in the range.