Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to capitalize the first letter in a list python

    singers = ['johnny rotten', 'eddie vedder', 'kurt kobain', 'chris cornell', 'micheal phillip jagger']
    singers = [singer.capitalize() for singer in singers]
    print(singers)

   #instead of capitalize use title() to have each word start with capital letter
Comment

how to capitalize first letter in python in list using list comprehension

my_list = ['apple pie', 'orange jam']
print my_list[0].capitalize()
Comment

capiatlize first letter in list

    singers = ['johnny rotten', 'eddie vedder', 'kurt kobain', 'chris cornell', 'micheal phillip jagger']
    singers = [singer.capitalize() for singer in singers]
    print(singers)

   #instead of capitalize use title() to have each word start with capital letter
   
   Output:

   Johnny rotten, Eddie vedder, Kurt kobain, Chris cornell, Micheal phillips jagger
Comment

PREVIOUS NEXT
Code Example
Python :: get range of items of python list 
Python :: magic methods python 
Python :: work with gzip 
Python :: find max length in string in pandas dataframe 
Python :: python bitwise operators 
Python :: find length of text file python 
Python :: python printing variables 
Python :: python timer decorator 
Python :: python get memory address 
Python :: how to display percentage in pandas crosstab 
Python :: df rename columns 
Python :: appending to a file in python 
Python :: datetime strptime format 
Python :: pandas for column in dataframe 
Python :: pd merge 
Python :: extract tgz files in python 
Python :: max date by group pandas 
Python :: get month day year 12 hour time format python 
Python :: multiclass ROC AUC curve 
Python :: reverse the words in a string python 
Python :: difference between __str__ and __repr__ 
Python :: installation of uvicorn with only pure python dependencies 
Python :: mario cs50 
Python :: how to open pickle file 
Python :: python access global variable 
Python :: flask template split string 
Python :: hex to rgb python 
Python :: random library python 
Python :: Python program to print all odd numbers in a range 
Python :: python grid 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =