x=1-1
y=5-3
print(id(x),id(y))
#This is the 1st lesson
"""Trying out
hello"""
fruits=["apple","banana","cherry"]
print(fruits)
fruits=("apple","banana","cherry")
print(fruits)
if x>0:
print ("positive")
else:
print("non-positive")
def greet(name):
print(f"hello,{name}!") #f-string
greet("Alice")
age=15
if age>18:
print ("adult")
elif age==18:
print("just turned adult")
else:
print("minor")
language = "Python"
school = "freeCodeCamp"
print(f"I'm learning {language} from {school}.")