def uppercase(text):
    words = [w.capitalize() for w in text.split()]
    return " ".join(words)

text = uppercase("Hola como estas tu hoy")

print(text)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: