Python Basics — Day 9 Strings in Python
01. What is a String?
A string is a sequence of characters (text data).
Defined using either single quotes ' ' or double quotes " ".
text1 = "Hello"
text2 = 'Python'
print(text1, text2)
02. Indexing & Slicing Strings
Strings are ordered data t...
sabinsim.hashnode.dev2 min read