fork download
  1. import time
  2.  
  3. def happy_birthday():
  4. message = [
  5. ”🎂🎉 Happy Birthday น้องเพลง! 🎉🎂“,
  6. ”ขอให้มีความสุขมาก ๆ สุขภาพแข็งแรง“,
  7. ”สมหวังในทุกสิ่งที่ตั้งใจ ❤️“
  8. ]
  9.  
  10. cake = ”“”
  11. i i i i i
  12. |:H:a:p:p:y:|
  13. __|___________|__
  14. |^^^^^^^^^^^^^^^^^|
  15. |:B:i:r:t:h:d:a:y:|
  16. | |
  17. ~~~~~~~~~~~~~~~~~~~
  18. “”“
  19.  
  20. for line in message:
  21. print(line)
  22.  
  23. print(cake)
  24.  
  25. happy_birthday()
  26.  
  27.  
  28.  
Success #stdin #stdout 0.03s 25932KB
stdin
Standard input is empty
stdout
import time

def happy_birthday():
    message = [
        ”🎂🎉 Happy Birthday น้องเพลง! 🎉🎂“,
        ”ขอให้มีความสุขมาก ๆ สุขภาพแข็งแรง“,
        ”สมหวังในทุกสิ่งที่ตั้งใจ ❤️“
    ]

    cake = ”“”
        i i i i i
      |:H:a:p:p:y:|
    __|___________|__
   |^^^^^^^^^^^^^^^^^|
   |:B:i:r:t:h:d:a:y:|
   |                 |
   ~~~~~~~~~~~~~~~~~~~
    “”“

    for line in message:
        print(line)
        time.sleep(1)

    print(cake)

happy_birthday()