Hello world

Hello world

print("hello world!")        #to print hello world
message="parth panchal" #storing variable
print(message.title()) #to print in title case
print(message.upper())       #to print message in upper case
print(message.lower())       #to print message in lower case 

private = 3 #to storing value in interger type
public = 7
total = private + public #sum of that stored value
print("\nTotal Post:")
print(total) #print of total value
score= 40+4
print("\nTOTAL SCORE")
print(score)




Comments