Computer Science
What is the output produced?
(i) >>> "-".join(['123','365','1319'])
(ii) >>> " ".join(['Python', 'is', 'fun'])
Related Questions
Find the errors. Find the line numbers causing errors.
- S = "PURA VIDA"
- S1 = S[: 5]
- S2 = S[5 :]
- S3 = S1 * S2
- S4 = S2 + '3'
- S5 = S1 + 3
What is the output produced?
(i) >>> "whenever" .find("never")
(ii) >>> "whenever" .find("what")
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 to count the number of times a character occurs in the given string.