This commit is contained in:
2026-06-05 01:28:27 +00:00
parent bdde9bd1ca
commit 67b7ced5ba
19 changed files with 276 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
before = input("Before: ")
print("After: ", end="")
for c in before:
print(c.upper(), end="")
print()