Pass-Statement
Wed 12 November 2025
# created : 20250316
# https://www.scientecheasy.com/2022/11/python-pass-statement.html/
x = 20
y = 30
if x > y:
pass
# there will be no output for this code
Score: 5
Category: python-basics
# created : 20250316
# https://www.scientecheasy.com/2022/11/python-pass-statement.html/
x = 20
y = 30
if x > y:
pass
# there will be no output for this code
Score: 5
Category: python-basics