str : tuple ( ) , dict ( )
- Return the string without any whitespace at the beginning or the end
x = txt.strip()
- Replace the character H with a J.
txt = "Hello World"
txt = txt.replace("H", "J" )
- Insert the correct syntax to add a placeholder for the age parameter.
age = 36
txt =...