"[PYTHON] Convert Uppercase to Lowercase"

Published: Sat 11 June 2016

In content.

This post written for casual python users who have knowledge in [man]-handling python interpreter. Depending on your workstation operating system, enter python interpreter.

Once you're in the interpreter, assign a variable to the content you want to convert.

e.g:

python>>>string = ""

Then print the variable with lower function.

e.g:

python>>>print(string.lower())

output:

social