From a135a522785fb77840461a7e0cb5fb5922bfba2f Mon Sep 17 00:00:00 2001 From: Shivank Sharma <69038430+bluedefender070@users.noreply.github.com> Date: Wed, 30 Sep 2020 21:07:54 +0530 Subject: [PATCH] Update python_strings.py --- basic_examples/python_strings.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/basic_examples/python_strings.py b/basic_examples/python_strings.py index 62a4e3e..866b482 100755 --- a/basic_examples/python_strings.py +++ b/basic_examples/python_strings.py @@ -15,7 +15,7 @@ #Strings can be continued on the next line print "This string is continued on the\ -next line (in the source) but a newline is not added" +next line (in the source) but a newline is not added"#Note: This will not work in python 3.5 or above, to make multiline string you have to use triple quotes #Raw strings print r"The newline character is represented with \n" @@ -42,3 +42,8 @@ if(greeting.find('Hello') != -1): print 'This greeting seems to be in English' + +#WE can also perform slicing in string +str1="Hello" +print "The first character of string is "str1[0], +print "The frist three character of string are "str1[0:3],