Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Docs #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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],