Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extension not giving output #488

Open
Adyboy1 opened this issue Sep 8, 2024 · 1 comment
Open

Extension not giving output #488

Adyboy1 opened this issue Sep 8, 2024 · 1 comment

Comments

@Adyboy1
Copy link

Adyboy1 commented Sep 8, 2024

Extension is not working as it should it has stopped displaying any output when the testcases are run

@rayleigh-jin
Copy link

Version is 5.9.2
When I run the test case, the extension cannot recognize the output.
image

def is_leap(year):
    
    # Write your logic here
    if year % 4 == 0:
        if year % 100 == 0:  #unless
            if year % 400 == 0: #unless
                return True
            else:
                return False
        else:
            return True
    else:
        return False
        

year = int(input("Input a year what you want to check: "))
print(is_leap(year))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants