Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python all list items to lower case

    line_split = cleaned_string.split()
    for word in filler_words:
        for i in  line_split:
            line_split[i] = line_split[i].lower()
Source by replit.com #
 
PREVIOUS NEXT
Tagged: #python #list #items #case
ADD COMMENT
Topic
Name
3+5 =