Python- Strings
Welcome boys Lets start the topic for the day.- "Strings in Python" ======================================================================== By the end of the session, you will be able to Understand the string data type definition and purpose of string data type Ways to access strings and their subsets Apply the concatenation operator and predict the output. ======================================================================= Please connect to me via Google meet. Click on the following link: Meeting ID meet.google.com/dpj-torb-fsn Python Strings Strings in Python are identified as a contiguous set of characters represented in the quotation marks. Python allows for either pairs of single or double quotes. Subsets of strings can be taken using the slice operator ([ ] and [:] ) with indexes starting at 0 in the beginning of the string and working their way from -1 at the end. The plus (+) sign is the string concatenation operator....