Comment convertir une chaîne en minuscules en Python ?

Patricia Arquette
Libérer: 2024-11-15 13:10:02
original
146 Les gens l'ont consulté

How do I Convert a String to Lowercase in Python?

Lowercasing a String in Python: A Simple Guide

Converting a string to lowercase is a common task in programming. Python provides an effortless method to accomplish this using the lower() function.

How to Lowercase a String

To convert a string to lowercase, simply utilize the lower() function as follows:

string.lower()
Copier après la connexion

Example

Consider the string "Kilometers". To convert it to lowercase, we can use:

lowercase_string = "Kilometers".lower()
Copier après la connexion

This will result in the following lowercase string:

lowercase_string = "kilometers"
Copier après la connexion

Additional Notes

  • The lower() function operates on a copy of the original string and does not modify the original.
  • The converted string is returned as a new copy, allowing you to assign it to a different variable.
  • lower() converts all uppercase characters to their lowercase equivalents.

Conclusion

Lowercasing a string in Python is a straightforward process using the lower() function. This function provides a simple and efficient way to convert strings to lowercase for various applications.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal