Python Notes for Unemployed Programmers
A string is a sequence composed of independent characters, typically enclosed in single quotes (”), double quotes (“”), or triple quotes (”’ ”’ or “”” “””). For example, the following representations are actually the same: s1 = ‘python’s2 = “python” s3 = “””python””” print(s1==s2==s3) D:\pyproject\venv\Scripts\python.exe D:/pyproject/py05.py True Process finished with exit code 0 Python supports … Read more