Understanding Python Strings
01Strings (str) Strings (str), as the name implies, are understood as follows. Characters, letters, words, numbers; symbols, various signs; when enclosed in single quotes ‘ ‘ or double quotes ” “, they form a string. a = 'Hello World'print(type(a)) #<class 'str'> 'Hello World' is of string type Strings (str) are a sequence of characters enclosed … Read more