Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion basic_examples/python_strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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],