Tutorialschevron_rightPython Tutorialchevron_rightPython StringsPython Stringsformat_list_numberedLesson 5 of 11schedule1 min readview_agenda1 sectionauto_awesomeAI tutor ready01StringsStrings in Python are surrounded by either single quotation marks, or double quotation marks.Examplea = "Hello" print(a) print(len(a))OutputHello 5Try it Yourself »arrow_back PreviousPython Data TypesNext arrow_forwardPython Numbers