python programs make by using string
Answers
Answered by
1
Answer:
here is ur answer.....
Here is a complete list of all the built-in methods to work with strings in Python. >>> "PrOgRaMiZ". lower() 'programiz' >>> "PrOgRaMiZ". upper() 'PROGRAMIZ' >>> "This will split all words into a list". ['This', 'will', 'split', 'all', 'words', 'into', 'a', 'list'] >>> ' '. 'This will join all words into a string'
Similar questions