import base64
encodedmsg = base64.b64encode(input("Enter Text to encrypt: ").encode())
print("Encoded text: ",encodedmsg)
decodedmsg = base64.b64decode(encodedmsg)
print("Decoded text: ",decodedmsg)
#Coded by Saahil
#ENJOY CODING
import base64
encodedmsg = base64.b64encode(input("Enter Text to encrypt: ").encode())
print("Encoded text: ",encodedmsg)
decodedmsg = base64.b64decode(encodedmsg)
print("Decoded text: ",decodedmsg)
#Coded by Saahil
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP