busse / kodumisto-playground

A playground for `kodumisto`
MIT License
1 stars 0 forks source link

ChatGPT `gpt-3.5-turbo` response for issue #34 #36

Open busse opened 1 year ago

busse commented 1 year ago

Adding a file containing the ChatGPT gpt-3.5-turbo response for issue #34:

import random

def add_emoji(text): emojis = ['😀', '😁', '😂', '😊', '😋', '😎', '😍', '😇'] return text + random.choice(emojis)

print(add_emoji("Hello World"))