Computer Science
Write a program to count the number of times a character occurs in the given string.
Related Questions
What is the output produced?
(i) >>> "-".join(['123','365','1319'])
(ii) >>> " ".join(['Python', 'is', 'fun'])
Given a string S, write expressions to print
- first five characters of S
- Ninth character of S
- reversed S
- alternate characters from reversed S
Write a program which replaces all vowels in the string with '*'.
Write a program which reverses a string and stores the reversed string in a new string.