I will be showing more examples of indexing and slicing as a form of my practice to familiarize this. From the previous lesson/posts, the syntax for slicing as follows: string[start : end : step] Example1: (Indexing and Slicing in Strings) W r i t e C o d e O n l i n e…
Tag: strings
Python>>Data Type:Strings
Strings are text type and are sequences of character data. It is represented by quotation marks, either single or double quotes. Example: “Hello” ‘What is your name?’ >>> “Hello” ‘Hello’ >>> x = ‘What is your name?’ >>> print (x) What is your name? >>> Some key notes: 1.Escape sequences in strings = use backslash…