Python

Python Menu

Python

Python String lower() - Definition, Syntax, Parameters, Examples

Definition

The lower() method returns a string where all characters are lower case.

Syntax

string.lower()

Parameters

No Parameters.

Examples:

testStr = "Hello WORLD!" result = testStr.lower() print(result)

Introduction

Python Basics

Python Advance

Data Science Python Tutorials

Python Functions and Methods