Python Tutorial — Chapter 4
In this tutorial, I am going to show you how to work with strings in Python! How to represent a string Strings in python are surrounded by either single or double quotation mark. aname = ‘Jimmy’ anothername = “James” How to combine two strings When you combined two strings with +, you will get a…