50_Python_Practice_Questions
50_Python_Practice_Questions
print(2 + 3 * 4)
x = 10
print(x)
a = 'Hello '
b = 'World'
print(a + b)
my_list = [1, 2, 3]
print(my_list[0])
print(i)
def greet():
print('Hello')
greet()
x = 10
if x > 5:
print('Greater')
else:
print('Smaller')
print(name)
# This is a comment
print('Hello')
if True:
print('Indented')