CSE Activity 1.3.5 Strings

The string .format method revisited: using the string .format method to format output. There are two ways to output information to the screen. Using the print() function or by giving the expression. Try these now: >>>myName="David Bowie" >>>print(myName) David Bowie >>>myName 'David Bowie' The string .format is used to give more control over ... ................
................