Open busse opened 1 year ago
Adding a file containing the ChatGPT gpt-3.5-turbo response for issue #34:
gpt-3.5-turbo
import random
def add_emoji(text): emojis = ['😀', '😁', '😂', '😊', '😋', '😎', '😍', '😇'] return text + random.choice(emojis)
print(add_emoji("Hello World"))
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"))