1#A string is a type of data. There are many data types. It can be manipulated.
2#It can be storerd as a variable
3myString = "Hello world"
4#WE can print it:
5print(myString)
6#You can append it to arraY:
7myArr = []
8myArr.append(myString)
9#You can find the index of a character in a string:
10H = myString[0]
11#You can use methods on it:
12lowercase = myString.lower()
13#You can convert it into a integer provided it is a numerical string
14myInt = int(myString)
15#So thats the basics, hope i haven't left anything out.
1string1 = "something"
2string2 = 'something else'
3string3 = """
4something
5super
6long
7"""