def uppercase(word): return ''.join([chr(ord(c) & (255 ^ 32)) for c in word]) # return word.upper() print(uppercase("Hello World! What's up!?"))