开始了。
if menuInput == '1':
print("")
encryptString = input("Please enter string to encrypt:")
print("")
offSetValue = int(input("Please enter offset value (1-94):"))
print("")
print("Encrypted string:")
for character in encryptString:
x = ord(character)
y = x + offSetValue
z = chr(y)
print(z, end='')