Chapters
Python114 chapters

Exercises

Modify Strings

3 tasks. Write the code, press Check, and the page runs it against a real Python interpreter.

Exercise 1

Remove the whitespace from both ends and print the result with repr so you can see it worked.

Python
name = "  Ada Lovelace  "
# print the trimmed name using repr
Exercise 2

Remove the www. prefix safely, without chewing off other letters.

Python
host = "www.example.com"
# print example.com
Exercise 3

Split the line on commas and join the pieces back together with and between them.

Python
line = "one,two,three"
# print: one and two and three