๐ป Python Strings Methods
๐น 1. What is a String?
A string is a group of text or characters.
In Python, we use quotes ('' or "") to make a string.
name = "Safia"
greeting = 'Hello World'
๐น 2. How to Create a String?
s1 = "Hello"
s2 = 'Python'
s3 = """With triple quotes...
safiakhatoon.hashnode.dev2 min read