[go: up one dir, main page]

0% found this document useful (0 votes)
25 views12 pages

Ch06 Strings

Computer Python Learning

Uploaded by

wawerucollins15
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
0% found this document useful (0 votes)
25 views12 pages

Ch06 Strings

Computer Python Learning

Uploaded by

wawerucollins15
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
You are on page 1/ 12
Chapter 6 Strings Strings are not like integers, loats, and booleans. A string is a sequence, which means itis ‘an ordered collection of other values. In this chapter you'll see how to access the characters, ‘that make up a string, and you'll learn about some of the methods strings provide 61 Astring is a sequence A string is a sequence of characters. You can access the characters one at a time with the bracket operator = rue] The second statement selects character number I from fruit and assigns it to Letter. The expression in brackets is called an index. The index indicates which character in the sequence you want (hence the name) But you might not get what you expect: For most people, the first letter of "banana is b, not a. But for computer scientists, the index is an offset from the beginning of the string, and the offset of the first letter is zero. So bis the Oth letter ("zero-eth”) of ‘banana’, ais the 1th letter (“one-eth”), and m is the 2th letter (“two-eth’) As an index you can use an expression that contains variables and operators: 70. Chapter 6, Strings But the value of the index has to be an integer. Otherwise you get: 6.2 len en is a built-in function that retums the number of characters in a string: ten(trase) To get the last letter of a string, you might be tempted to try something like this: Teagth = aen(eraio) Test = fruitLlength] IndexBreor! string index out of range The reason for the IndexBrrer is that there is no letter in "banana? with the index 6. Since ‘we started counting at zero, the six letters are numbered 0 to 5, To get the last character, you have to subtract 1 from length: Tenge) Or you can use negative indices, which count backward from the end of the string. The expression fruit [-1] yields the last letter, fruit [-2] yields the second to last, and so on. 6.3. Traversal with a for loop A lot of computations involve processing a string one character at a time. Often they start at the beginning, select each character in tur, do something to it, and continue until the ‘end. This pattern of processing is called a traversal. One way to write a traversal is with a ‘hile loop: while index < lan¢txuity letter = fruitLindes] prize (lee tring. This loop traverses the string and displays each letter on a line by itself. The loop condition is index < len(fruit), so when index is equal to the length of the string, the condition is false, and the body of the loop doesn’t run. The last character accessed is the one with the index 1en(fruit)~1, which is the last character in the string, ‘As an exercise, write a function that takes a string as an argument and displays the letters backward, one per line Another way to write a traversal is with a for loop: Yor leteer in fraie print (letter) Each time through the loop, the next character in the string is assigned to the variable letter. The loop continues until no characters are left ‘The following example shows how to use concatenation (string addition) and a for loop to generate an abecedarian series (that is, in alphabetical order). In Robert McCloskey’s book Make Way for Ducklings, the names of the ducklings are Jack, Kack, Lack, Mack, Nack, ‘Ouack, Pack, and Quack, This loop outputs these names in order: prefixes = JxLM0rG" fuitix = ‘ack! [for etter An presizes: print (letter + suffix) The outputis: Jack Kack Lack Mack Wack ack Pack gack Of course, that’s not quite right because “Ouack” and “Quack” are misspelled. As an exercise, modify the program to fix this error. 64 String slices ‘A segment of a string is called a slice. Selecting a slice is similar to selecting a character: 2 = iNonty Python’ 10:5) st6221 “pyehon! wt—" banana’ Index 123456 Figure 6.1: Slice indices. The operator (n:m) returns the part ofthe string from the “n-eth” character to the “m-eth” character, including the first but excluding the last. This behavior is counter intuitive, but it might help to imagine the indices pointing bettoeen the characters, asin Figure 6.1 If you omit the first index (before the colon), the slice starts at the beginning of the string, If you omit the second inciex, the slice goes to the end of the string: eel fruit [:3] "hr Featla) If the first index is greater than or equal to the second the result is an empty string, repre- sented by two quotation marks: suse 3:3) An empty string contains no characters and has length 0, but other than that, itis the same as any other string Continuing this example, what do you think fruit (:] means? Try it and see. 6.5 Strings are immutable Itis tempting to use the [] operator on the left side of an assignment, with the intention of changing, a character in a string, For example: SSS freating 0] = 's" “TypeError: ‘atr* object does not support sven eseigment The “object” in this case is the string and the “item” is the character you tried to assign. For now, an object is the same thing as a value, but we will refine that definition later (ection 7.10). The reason for the error is that strings are immutable, which means you can’t change an existing string. The best you can do is create a new string that is a variation on the original: eeacting = "Hello, vorlat" ev_greeting = 'J" + gresting[t:] nev_grecting Ey ‘This example concatenates a new first letter onto a slice of greet ing. Ithas no effect on the original string. ‘The string itself is immutable, but that doesn’t stop you from assigning a new string to the variable, using the same method [greeting = ‘Hello, world!” eee Et eerie greeting 6.6 Searching What does the following function do? faez tina eord, letter sndes while index < Lentvord) if wordlindex] == Levcer Ina sense, find is the inverse of the [] operator, Instead of taking an index and extracting the corresponding character, it takes a character and finds the index where that character appears. If the character is not found, the function returns -1 This is the first example we have seen of a return statement inside a loop. If word [index] Letter, the function breaks out of the loop and returns immediately. If the character doesn’t appear in the string, the program exits the loop normally and re- turns -1. This pattern of computation—traversing a sequence and returning when we find what we are looking for—is called a search, ‘As an exercise, modify find so that it has a third parameter, the index in vord where it should start looking 6.7 Looping and counting ‘The following program counts the number of times the letter a appears in a string: frord = "panana™ count = 0 for letter sn word: Af lever == prine count) m4 Chapter 6, Strings This program demonstrates another pattern of computation called a counter. The variable count is initialized to 0 and then incremented each time an a is found. When the loop exits, count contains the result—the total number of a's, As an exercise, encapsulate this code in a function named count, and generalize it so that it accepts the string and the letter as arguments. ‘Then rewrite the function so that instead of traversing the string, it uses the three- parameter version of find from the previous section. 6.8 Methods Python is really a joy to use when working with text data. You will see the power of this later in the chapters on Lists and Dictionaries. We will give you a preview of this here. We use strings to illustrate the difference between functions and methods, Recall that strings are text data enclosed in either single or double quotes: “This is a string.” ‘These can be stored in variables: [message = "This 42 super secret message.” ‘A handy function is the length function print Cente =) Pn ‘There are lots of different string operations available known as string methods. Strings provide methods that perform a variety of useful operations. A method is similar to a function—it may take arguments and returns a value—but the syntax is different. For example, the method upper takes a string and returns a new string with all uppercase letters. Maybe you want to convert a string to upper case and you see online listed upper(), so you try print Capper (eenzage)) Traceback (Gost receat call last) Bile "Cetdis>", Line 1, in Nenekrror: name ‘upper’ is aot d upper () is a string method which is a type of function, but is called differently than the functions above. This will be fully explained later in the chapter on Classes and Methods Classes and Methods fall into a programming type known as Object Oriented Program- ming or OOP. The idea is that data and the functions that act on the data are related and should be bound together. So the data has certain functions defined for it, those are the methods. Those methods are invoked by using the dot notation with the data and method print (nessage upper OD "THIS 18 A SUPER SECRET MESSAGE Methods. 5 Instead of the function syntax upper (word), it uses the method syntax vord. upper () new_vord = vord.upper() This form of dot notation specifies the name of the method, upper, and the name of the string to apply the method to, vord. The empty parentheses indicate that this method takes no arguments. ‘A method call is called an invocation; in this case, we would say that we are invoking upper on vord. Here are a couple more string methods to try out: Prine (eezzage.est1e() rine (neszage?. trip ()) Jpessages = "123454" Prins (messaged. sedecinal() Thus it is important to know when you have a more traditional function and when the module is providing you with a method. To continue that discussion with more background in strings we can examine the methods which involve indexing, = wore tind('a") In this example, we invoke find on word and pass the letler we are looking for as a param- eter. Actually, the find method is more general than our function; it can find substrings, not just characters: ord, finda) By default, tind starts at the beginning of the string, but it can take a second argument, the index where it should start: vera. Fina('ea', 3) 7 This is an example of an optional argument; find can also take a third argument, the index where it should stop: nane.tina('b", 1, 2) This search fails because b does not appear in the index range from 1 to 2, not including 2 Searching up to, but not including, the second index makes find consistent with the slice operator. 76 Chapter 6, Strings 6.9 The in operator The word in is a Boolean operator that takes two strings and returns True if the first ap pears as a substring in the second: "ar im "banana Troe in "banana False For example, the following function prints all the letters from wordi that also appear in word2: fact in btn prine(letter) With well-chosen variable names, Python sometimes reads like English. You could read this loop, “for (each) letter in (the first) word, if (the) leter (appears) in (the second) word, print (the) letter.” Here's what you get if you compare apples and oranges: Te bowh( apples, Torenges") 6.10 String comparison ‘The relational operators work on strings. To see if two strings are equal: Prine('4l) right, bananas, ‘Other relational operations are useful for putting words in alphabetical order: Sprint (Your ver” oral", canes before beaoe, prine('Your word, "+ word +", comes after banana.) rine (‘ALL right, bananas.) Python does not handle uppercase and lowercase letters the same way people do. All the uppercase letters come before all the lowercase letters, so Your vord, Pineapple, cones before banana. A common way to address this problem is to convert strings to a standard format, such as all lowercase, before performing the comparison. Keep that in mind in case you have to defend yourself against a man armed with a Pineapple. 6 Debugging 6.11 Debugging When you use indices to traverse the values in a sequence, it is tricky to get the beginning and end of the traversal right. Here is a function that is supposed to compare two words and return True if one of the words is the reverse of the other, but it contains two errors: [act iz reverse (vorai, vora2) if Ten(wordt) t= Len(word2) ° 3 = Leatuora2) waite 3 > 0: Af wordt (a) 1 vort2(y] ‘The first if statement checks whether the words are the same length, Ifnot, we can return False immediately. Otherwise, for the rest of the function, we can assume that the words are the same length. This is an example of the guardian pattern in Section 147. and j are indices: i traverses vord1 forward while j traverses vord2 backward. If we find two letters that don’t match, we can return False immediately. If we get through the whole loop and all the letters match, we return True. If we test this function with the words “pots” and “stop”, we expect the return value True, but we get an IndexError: Teireverse(ipora's “atep') tle "reverse.py", Line 18, in is.xeverse Af wordt (a) t= vore2Uy)} Indextreor! string index out of range For debugging this kind of error, my first move is to print the values of the indices imme- diately before the line where the error appears. file 5 > 0 Princ(L, 9) # print here £6 wordt (i) 1 wore2U] ‘Now when Ivun the program again, I get more information: > Ta reverse(iporey IndexEreor: string index out of range ‘The first time through the loop, the value of j is 4, which is out of range for the string ‘pote’. The index of the last character is 3, so the initial value for j should be Len(word2)-1 If fix that error and run the program again, I get word! —= pols’ word2 —= ‘stop! —0 i Figure 6.2: State diagram. isreverse('pote’, ‘stop") va 42 24 ewe This time we get the right answer, but it looks like the loop only ran three times, which is suspicious. To get a better idea of what is happening, itis useful to draw a state diagram, During the first iteration, the frame for is_reverse is shown in Figure 6.2. 1 took some license by arranging the variables in the frame and adding dotted lines to show that the values of 4 and j indicate characters in word and word2. Starting with this diagram, run the program on paper, changing the values of 4 and j during each iteration, Find and fix the second error in this function. 6.12 Glossary object: Something a variable can refer to. For now, you can use “object” and “value” interchangeably. sequence: An ordered collection of values where each value is identified by an integer index. item: One of the values in a sequence. index: An integer value used to select an item in a sequence, such asa character in a string. In Python indices start from 0. slice: A part ofa string specified by a range of indices. empty string: string with no characters and length 0, represented by to quotation immutable: The property of a sequence whose items cannot be changed. traverse: To iterate through the items in a sequence, performing a similar operation on each. search: A pattern of traversal that stops when it finds what it is looking for. counter: A variable used to count something, usually initialized to zero and then incre- mented. method: A function that is associated with an object and called using dot notation invocation: A statement that calls a method, optional argument: A function or method argument that is not required. 6 Exercises 9 6.13 Exercises Exercise 1: Read the documentation of the string methods at http: //docs .python.org/3/Library/ stdtypes.html#etring-nethods. You might want to experiment with some of them to make sure you understand how they work. strip and replace are particularly useful ‘The documentation uses a syntax that might be confusing. For example, in find(subl, start[, end]]), the brackets indicate optional arguments. So sub is re- quired, but start is optional, and if you include start, then end is optional, Exercise 2: ‘There is a string method called count that is similar to the function in Section 6.7. Read ‘the documentation of this method and write an invocation that counts the number of a’s in "banana Exercise 3: A string slice can take a third index that specifies the “step size”; that is, the number of spaces between successive characters. A step size of 2means every other character; 3means every third, etc >>> fruit = ‘banana! >>> fruit (0:5:2] enn! Asstep size of -1 goes through the word backwards, so the slice [: :-1] generates a reversed string, Use this idiom to write a one-line version of ie_reverse from the Debugging section above. Exercise 4: ‘The following functions are all intended to check whether a string contains any lowercase letters, but at least some of them are wrong. For each function, describe what the function actually does (assuming that the parameter is a string). def any_lovercasel (s) for ¢ ins: if c.islover() return True return False def any_lowercase2(s) for c ins if ‘ce! islover() return 'True return ‘False’ 80 Chapter 6, Strings def any_lowercase3(s) for c ins flag = c.islower() return flag def any_lovercased(s) fag = False for ¢ ine: flag = flag or ¢.islever() return flag def any_lowercase5(s) for c ins. if not cislower() return False return True Exercise 5: A Caesar cypher is a weak form of encryption that involves “rotating” each letter by @ fixed number of places. To rotate a letter means to shift it through the alphabet, wrapping. around to the beginning if necessary, so ’A’ rotated by 3is 'D’ and 'Z’ rotated by 1is ‘A’ ‘To rotate a word, rotate each letter by the same amount. For example, “cheer” rotated by 7 is “jolly” and “melon” rotated by -10 is “cubed”. In the movie 2001: A Space Odyssey, the ship computer is called HAL, which is IBM rotated by -1 Write a function called retate_vord that takes a string and an integer as parameters, and returns a new string that contains the letters from the original string rotated by the given amount, You might want to use the built-in function ord, which converts a character to a numeric code, and chr, which converts numeric codes to characters. Letters of the alphabet are encoded in alphabetical order, so for example: >>> ord('e!) ~ ord('a') 2 Because ‘c' is the two-eth letter of the alphabet. But beware: the numeric codes for upper case letters are different, Potentially offensive jokes on the Internet are sometimes encoded in ROTI3, which is a Caesar cypher with rotation 13. If you are not easily offended, find and decode some of them. Solution: http: //thinkpython2. com/code/rotate py.

You might also like