Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Ask a Question
How do we convert the string to lowercase?
Home
Python
How do we convert the string to lowercase?
asked
May 17, 2020
in
Python
by
SakshiSharma
Q:
How do we convert the string to lowercase?
#python-string-lowercase
#lowercse-python
Python-questions-answers
1
Answer
0
votes
answered
May 17, 2020
by
sharadyadav1986
lower() function is used to convert string to lowercase.
Example:
1
2
str = 'XYZ'
print(str.lower())
Output:
1
xyz
Related questions
0
votes
Q: In Python how do you convert a string into lowercase?
asked
Feb 11, 2021
in
Python
by
SakshiSharma
#python-string
string
string-lowercase
python-lowercase
Python-questions-answers
0
votes
Q: How Do You Convert A Number Into A String in Python?
asked
Jun 28, 2020
in
Python
by
Robindeniel
#python-string-conversion
#python-number-conversion
#number-to-string-conversion-python
Python-questions-answers
0
votes
Q: How you can convert a number to a string?
asked
Jan 1, 2021
in
Python
by
SakshiSharma
#python-string
#convet-number-to-string
Python-questions-answers
0
votes
Q: Which of the following function convert a string to a float in python?
asked
Feb 11, 2020
in
Python
by
rahuljain1
#python-string
Python-questions-answers
0
votes
Q: Which Python Function Will You Use To Convert A Number To A String?
asked
Dec 22, 2019
in
Python
by
rajeshsharma
#python-function
Python-questions-answers
+1
vote
Q: How will you convert an input to all lowercase?
asked
Jan 24, 2022
in
Angular
by
sharadyadav1986
convert-to-lowercase
0
votes
Q: How To Convert A List Into Other Data Types?
asked
Dec 22, 2019
in
Python
by
rajeshsharma
#python-data-types
Python-questions-answers
+1
vote
Q: How do we interpret Python?
asked
Feb 14, 2021
in
Python
by
SakshiSharma
#python-interpretation
python
python-read
Python-questions-answers
0
votes
Q: How do we write a function in Python Language?
asked
Aug 29, 2020
in
Python
by
Robindeniel
#python-function-write
#write-a-function
Python-questions-answers
0
votes
Q: How do we reverse a list in Python?
asked
May 17, 2020
in
Python
by
SakshiSharma
#python-reverse-list
#reverse-list-python
Python-questions-answers
0
votes
Q: How do we find bugs and statistical problems in Python?
asked
May 16, 2020
in
Python
by
Robindeniel
#python-statistical-problems
#python-problems
Python-questions-answers
0
votes
Q: How Do We Write A Function In Python?
asked
Dec 14, 2019
in
Python
by
sharadyadav1986
#python-write-function
Python-questions-answers
0
votes
Q: Which of the following is used to convert NumPy array to Tensor?
asked
Jan 17, 2021
in
Python
by
SakshiSharma
#numpy
#tensor
Python-questions-answers
+1
vote
Q: How can a number be converted to a string?
asked
Feb 13, 2021
in
Python
by
SakshiSharma
#python-string
convert-string
number-to-string
python-number-conversion
Python-questions-answers
0
votes
Q: How to fix “TypeError: string indices must be integers”?
asked
Jan 10, 2021
in
Python
by
rajeshsharma
typeerror
python-error
Python-questions-answers
0
votes
Q: Suppose we have a text "human" that we want to convert into string without using the "new" operator.
asked
Mar 20, 2021
in
JavaScript
by
sharadyadav1986
javascript
javascript-string
string-function
0
votes
Q: How do you convert bytes to String?
asked
Jan 24, 2020
in
JAVA
by
rahuljain1
#java-string
Java-questions-answers
0
votes
Q: What do we use to define a block of code in Python language?
asked
Jan 18, 2021
in
Python
by
SakshiSharma
python-block
Python-questions-answers
0
votes
Q: How many ways can be applied for applying reverse string?
asked
Oct 11, 2021
in
Python
by
rajeshsharma
reverse-string
Python-questions-answers
0
votes
Q: How can you capitalize the first letter of a string?
asked
Feb 11, 2021
in
Python
by
SakshiSharma
#python-string
string-function
python
python-captitalize-string
Python-questions-answers
...