commit script caesarCaps

This commit is contained in:
Parrot user
2021-02-25 22:47:25 +00:00
parent 68ae1e3419
commit 5a71ff66a9

17
scripts/caesarCAPS.py Normal file
View File

@@ -0,0 +1,17 @@
text = input("Enter string in all caps for rot: ")
rot = 0
new = 0
while (rot < 26):
for x in text:
if ((ord(x) + rot) > 90):
new = ((ord(x) + rot) % 90) + 64
else:
new = ord(x) + rot
x = chr(new)
print(x, end = "")
print("\n")
rot += 1