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],