Get Base64 of a string in Python
Advertisements
import base64 # Get the base-64 of the string. def get_base_64_of_string(your_string): return base64.b64encode(your_string.encode()).decode() def main(): # Get the base-64 of the string. print(get_base_64_of_string("Hello World!")) main()