xFactorSchool.com(Beta)
How to Do Examples
Python Examples
HTML Examples
Code Examples
C Code Examples
C++ Code Examples
C# Code Examples
Java Code Examples
Python Code Examples
HTML Code Examples
CSS Code Examples
JavaScript Code Examples
Online Editor
C Code Editor
C++ Code Editor
C# Code Editor
Java Code Editor
Python Code Editor
HTML Code Editor
CSS Code Editor
JavaScript Code Editor
Practice how to convert all characters of a string to lowercase in Python
Python Online Editor
Execute Code
More Python Sample Codes
# Convert all characters of a string to lowercase in Python str_Variable = "Python is A proGRAMMING Language." lower_Variable = str_Variable.lower() # use lower() method of string print(lower_Variable) #Output: python is a programming language.