Python Begineer Code
print("Sarthak")
print(35.364738373)
bestfriend="Aditya"
goodmarks=49/50
print(bestfriend)
print(goodmarks)
print("My bestfriend is-",bestfriend)
print("Sarthak")
print('Sarthak')
print(type(bestfriend))
print(type(goodmarks))
age=13
new=True
a=None
print(type(age))
...