www.online.editor python,IDLE code example

Example 1: python ide online

#1
https://www.onlinegdb.com/online_python_compiler
#2
https://repl.it/languages/python3

Example 2: online pythone ide

print("hello world")
#A python program to illustrate Caesar Cipher Technique 
def encrypt(text,s): 
	result = "" 

	# traverse text 
	for i in range(len(text)): 
		char = text[i] 

		# Encrypt uppercase characters 
		if (char.isupper()): 
			result += chr((ord(char) + s-65) % 26 + 65) 

		# Encrypt lowercase characters 
		else: 
			result += chr((ord(char) + s - 97) % 26 + 97) 

	return result 

#check the above function 
text=input("Enter a message: ")

s = 2
print ("Text : " + text )
print ("Shift : " + str(s) )
print ("Cipher: " + encrypt(text,s) )