Writes Python strings with all vowels converted to uppercase. Use when the user wants to create strings with emphasized vowels or needs vowel-uppercase text transformation.
Convert the provided text to a Python string where all vowels (a, e, i, o, u) are converted to uppercase.
The text to convert is provided as: $ARGUMENTS
Return the converted string as a Python string literal:
"converted string here"
| Input | Output |
|---|---|
hello world | "hEllO wOrld" |
python programming | "pYthOn prOgrAmmIng" |
AEIOUY | "AEIOUY" |
xyz | "xYz" |
The quick brown fox | "ThE qUIck brOwn fOx" |
""