diff options
author | Bhanukiran | 2010-11-15 15:45:27 +0530 |
---|---|---|
committer | Bhanukiran | 2010-11-15 15:45:27 +0530 |
commit | 8ba1eeeb9c90122a2f15b87e6740e9612b33341f (patch) | |
tree | 0dde224d7937787f88d546fe7ddb1ac8df3a3ef6 /getting-started-strings/script.rst | |
parent | fa4ff193ec16d369f3ffd7079137d06c246df458 (diff) | |
download | st-scripts-8ba1eeeb9c90122a2f15b87e6740e9612b33341f.tar.gz st-scripts-8ba1eeeb9c90122a2f15b87e6740e9612b33341f.tar.bz2 st-scripts-8ba1eeeb9c90122a2f15b87e6740e9612b33341f.zip |
Language check done for `getting started with strings`
Diffstat (limited to 'getting-started-strings/script.rst')
-rw-r--r-- | getting-started-strings/script.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/getting-started-strings/script.rst b/getting-started-strings/script.rst index dd8365b..fb37267 100644 --- a/getting-started-strings/script.rst +++ b/getting-started-strings/script.rst @@ -16,8 +16,9 @@ .. 1. getting started with ipython .. Author : Madhu - Internal Reviewer : + Internal Reviewer : Punch External Reviewer : + Language Reviewer : Bhanukiran Checklist OK? : <put date stamp here, if OK> [2010-10-05] Script @@ -162,8 +163,8 @@ Let us attempt to change one of the characters in a string:: a = 'hello' a[0] = 'H' -As said earlier, strings are immutable. We cannot manipulate the -string. Although there are some methods which let us to manipulate the +As said earlier, strings are immutable. We cannot manipulate a +string. Although there are some methods which let us manipulate strings. We will look at them in the advanced session on strings. In addition to the methods that let us manipulate the strings we have methods like split which lets us break the string on the specified |