Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to change a string to small letter in python

my_str = "Hello World"
my_str = my_str.lower()
print(my_str) # outputs "hello world" on the terminal
Comment

PREVIOUS NEXT
Code Example
Python :: how to make square shape python 
Python :: how to make a crosshair in python 
Python :: how to read a pkl file in python 
Python :: python datetime into 12-hour format 
Python :: ignition create dataset 
Python :: knn classifier python example 
Python :: frequency unique pandas 
Python :: append a line to a text file python 
Python :: opencv set window size 
Python :: godot string format 
Python :: scipy correlation 
Python :: import a txt file into python 
Python :: add y axis label matplotlib 
Python :: how to iterate pandas dataframe 
Python :: pandas convert date column to year and month 
Python :: make pandas df from np array 
Python :: how to pick a random number in a list python 
Python :: change value to string pandas 
Python :: python tkinter treeview get selected item 
Python :: python open folder 
Python :: python boxplot show mean 
Python :: python datetime date only 
Python :: make first row column names pandas 
Python :: remove python2 centos 
Python :: how to download excel file from s3 using python 
Python :: how to append element python 
Python :: scaling image interpolation python 
Python :: pygame escape key 
Python :: pyqt5 qpushbutton disable 
Python :: drop row based on NaN value of a column 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =