22
loading...
This website collects cookies to deliver better user experience
print("www.machinelearning.org.in")
print("Python")
print("Data Science")
print("Machine Learning")
'print("Hello") #This is a comment'
'print("Python")
print("Data Science")
#print("Machine Learning")
print("Deep Learnig")
print("Artificial Intelligence")'
'''
print("Python")
print("Data Science")
print("Machine Learning")
print("Deep Learning")
'''
print("Artificial Intelligence")
a=10
b=3.134
c="Machine Learning"
print(a)
print(b)
print(c)
print("Value of a :",a)
print("Value of b :",b)
print("Value of c :",c)
print(a,b,c)
print("Value of a :",a,"Value of b :",b,"Value of c :",c)
print("Value of a :",a,"\nValue of b :",b,"\nValue of c
:",c)
print("Value of a :",a,end='\n')
("Value of b :",b,end='\n')
print("Value of c :",c,end='\n')
print("Value of a :",a,end=' ')
print("Value of b :",b,end=' ')
print("Value of c :",c,end=' ')
a=input("Enter any value:")
print(a)
print(type(a))