DATA STRUCTURES | My Assignment Tutor
17/03/20181DATA STRUCTURESStrings, lists, Tuples and MapsStrings■ Text in programming is what we call a string.■ Think of a string as a collection of letters■ Example of a string: “Hello World.”17/03/20182Creating strings■ In Python, we create a string by putting quotes (“”) around text■ Can also create strings by putting inverted commas (‘’) aroundthe text■ greetings … Read more