Join the conversation

# # #
# # for i in range(1,20):
# # if i % 2 == 0:
# # print(f'{i} is even')
# # else:
# # print(f'{i} is odd')# # for i in range(1, 21):
# # print (i)# for i in range(1,40):
# if i % 2 == 0:
# print(i)for letter in 'Python':
print(letter)
Reply

# # # number = int(input('Enter any number:'))
# # # if number > 100:
# # # print('The number is too large')# # #question :2
# # # age = int(input('Enter your age: '))
# # # if age >= 18:
# # # print('Eligible to vote.')# # #QUESTION :3
# # # temperature = float(input('Enter the temperature in Celsius: '))
# # # if temperature > 30:
# # # print('It is hot outside.')
# # # else :
# # # print('It is normal outside.')# # # QUESTION :4
# # word = input('Enter a word: ')
# # if 'python' in word:
# # print('python is present in the word.')
# # else:
# # print('python is not present in the word.')# # QUESTION :5
# Age= int(input('Enter a number: '))
# if Age 60:
# print('You are senior citizen.')
# else:
# print('Invalid input. Please enter a valid age.')
Reply

explained with easy examples, great
Reply

sir you explained well
Reply

Great learning
Reply

Learning
Reply

mashallah bohat a6a andaaz sai ap nai explain kia
Reply

where is oop
Reply

mera pass nahi print ho raha sirf 111111 hi print ho raha hy?
Reply

x = 12
y = 11if x == y:
print("x is equal to y")
elif x != y:
print("x is not equal to y")
Reply