age = 23
message = "Happy " + str(age) + "rd Birthday"
print(message)

输出位

Happy 23rd Birthday
04-25 16:32