Global Cube 2 years ago
parent
commit
46593e7936
3 changed files with 7 additions and 0 deletions
  1. 1 0
      .gitignore
  2. 0 0
      __init__.py
  3. 6 0
      sandbox/upper_lower.py

+ 1 - 0
.gitignore

@@ -4,3 +4,4 @@ build/
 *.dat.gpg
 mazda/logs/
 gcstruct/Kunden/**/info
+unzipped/

+ 0 - 0
__init__.py


+ 6 - 0
sandbox/upper_lower.py

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