Page
2.12 Programming Page 12
String Operators:
- Concatenation operator + adds two strings together.
- print("Up"+"side"+"down") creates the Output Upsidedown
- Replication operator * prints multiple copies of string.
- print(James * 3) creates the Output JamesJamesJames
- str() converts a number to a string.
THE END