# birthday story
birthdayboy_name = "udit"
friend_name = "kabar"
fever_temperature = "100.4"
flavor = "pineapple"
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 "+fever_temperature+" fever")
print("don\'t worry we make special "+flavor+" cake only for you")
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
Now create similar exercise and try by yourself
Leave a Reply