online python 3 code example
Example 1: online python compiler
Use this site
https://repl.it/languages/python3
Example 2: python online compiler
https://repl.it/
https://www.onlinegdb.com/online_python_compiler/
https://www.tutorialspoint.com/execute_python_online.php/
https://www.programiz.com/python-programming/online-compiler/
Example 3: online python compiler
https://www.onlinegdb.com/online_python_compiler/
https://www.tutorialspoint.com/execute_python_online.php/
https://www.programiz.com/python-programming/online-compiler/
Example 4: online pythone ide
print("hello world")
def encrypt(text,s):
result = ""
for i in range(len(text)):
char = text[i]
if (char.isupper()):
result += chr((ord(char) + s-65) % 26 + 65)
else:
result += chr((ord(char) + s - 97) % 26 + 97)
return result
text=input("Enter a message: ")
s = 2
print ("Text : " + text )
print ("Shift : " + str(s) )
print ("Cipher: " + encrypt(text,s) )