# birthday story
birthdayboy_name = "udit"
friend_name = "kabar"
fever_temperature = 100.4
flavor = "pineapple"
days = 29
print("happy birthday "+birthdayboy_name+" now where is the cake")
print("ohh sorry "+friend_name+" cake is finished you late")
print("i late because i have "+str(fever_temperature)+" fever")
print("don\'t worry we make special "+flavor+" cake only for you")
print(birthdayboy_name+" my birthday also coming after "+str(days)+" ")
print(type(birthdayboy_name))
print(type(fever_temperature))
print(type(days))
output: happy birthday udit now where is the cake
ohh sorry kabar cake is finished you late
i late because i have 100.4 fever
don't worry we make special pineapple cake only for you
udit my birthday also coming after 29
<class 'str'>
<class 'float'>
<class 'int'>
Now create similar exercise and try by yourself
Leave a Reply