Chapters 5&6: Iteration and Strings Flashcards
Increment/decrement
Updating the value of a variable bu increasing/drecreasing by 1 (or another fixed amount?) eg x=x+1
while
statement saying “if this condition is met (ie True), execute the body. If False, skip rest of body and execute subsequent lines. Method of looping.
n=10 while n>0: print(n) n=n-1 print('Blastoff!') #number ofiterations?
10, 9, 8, 7, 6, 5, 4, 3, 2, 1, Blastoff!
10 interations
iteration variable
variable which is changed each iteration and controls when the loop finishes, n above. If there isnt one, it’s an infinite loop.
while True
A way of making a controlled infinite loop, which will repeat (if user input is part of it, ie. x=input(‘type Hi\n’)) until broken eg by user entering sought-for value, ie if x==’Hi’//[tab]break.
while True: line=input('> ') if line[0]=='#' continue if line=='done' break print(line) print('Done!')
line[0] means first character of value of line; hence if it starts with #, start loop again without finishing.
if it’s ‘done’, loop breaks and final line occurs. Else, loops back.
Definite loop
A loop which goes through a set of values, and ends with the last value. Often with ‘for’ statement, rather than ‘while’ for an indefinite loop.
friends=[‘Joseph’, ‘Glenn’, ‘Sally’]
for friend in friends:
print(‘Happy New Year: ‘, friend)
print(‘Done!’)
the ‘for’ makes it cycle through 3 times, on per friend in set ‘friends’, before executing final line. Friend is iteration variable.
itervar
iteration variable, eg: total=0 for itervar in [3, 41, 12, 9, 74, 15]: total=total+itervar print('Total: ', total) #this would summate the numbers in set. (can just use sum() though)
fruit=’banana’
letter=fruit[1]
print(letter)
Returns ‘a’. first letter is [0], b, etc. Must be integer
len()
length of string, number of characters in a string (not other types)
length=len(fruit)
last=fruit[length]
error - out of range! [6] would be 7th letter, only 6. hence last=fruit[length-1] to get last letter, a. OR, count back, letter=fruit[-1] returns a, [-2] b etc.
spell out “fruit” letter by letter with “while” statement - traversing through a string
index=0
while index
spell out “fruit” letter by letter with “for” statement - traversing through a string
for char in fruit:
print(char)
String slices
assigning segments of a string for something, eg. s=’Ben Nouhan’, print(s[0:5]) returns Ben NB, it inludes first (0) but excludes last (5). [:5] is start to 5, [3:] is 3 to last. [:] is whole thing.
Change assignmet of variable by 1 letter, eg Ben Nouhan to Ben Nouyan
s=’Ben Nouhan’
s=s[:7]+’y’+s[8:]
count ‘a’s in banana
count=0 word='banana' for letter in word: if letter=='a' count=count+1 print(count)
letter in str
letter in a string. can be used with for, ie for letter in str:. an also be used as argument when defining funcction, ie def count(str, letter): etc.
char in str
same as letter in str, but characters in general.
in
A boolean operator, takes 2 strings and returns True if 1st appears as substring in 2nd, ie ‘a’ in ‘banana’ returns True.
Alphabetical ordering
< and > can be used to compare string alphabeticaclly. ‘aaron’‘Jeff’. If you don’t want cacpitalised words to have priotity, need to cconvert all to lowercase.
Object
eg a string. Contains data (eg the charaters of the string) and built-in methods, which are functions built into the given object, eg string-specific ones.
dir()
used like type(), except rather than giving the type of objetc, it lists all the available methods avalable for that object type.
help(object.method)
function for input of object type and method you want elucidating, eg help(str.capitalize) will explain that method for strings.
method vs function syntax
variable.method() vs function(variable). Brackets contain parameters if applicacble. eg word.find(‘a’)
Invocation
the call of a method. ie in above example, we invoked [method] on [variable], eg invoke find on word
find method
word=banana
index=word.find(‘a’, 2)
print(index) #returns 3. a is the substring it looks for in word string, 2 is the letter (first n) it starts looking from. NB if non found, returns ‘-1’
strip method
line=’ here we go ‘
line.strip() #returns ‘here we go’, removes spaces, tabs, enters from outside of non-white space.
startswith method
line=’Ben Nouhan’
line.startswith(‘Ben’) #returns True, as it does. Case sensitive; b will return False, Be will return True.
count method
s=banana
s. count(‘a’) #returns 3.
s. count(‘a’, 1, 5) #returns 2, as it counts ‘a’s between bAnaNa A and N inclusive
help.method square brackets meaning
paramaters are listed by comma as usual. Square brackets indicate a parameter is optional. square brackets within eachother mean if you use the first parameter, the second is then optional.
find unknown substr, z, between 2 known substrs, x&y in str
data=’str’
xpos=data.find(x)
ypos=data.find(y)
z=data[xpos+1:ypos]
% (used on str)
format operator
format sequences %d, %g, %s
integer, floating-point, string
formatting example, eg with 3 format sequences
‘in %d years I have spotted %g %s.’%(3, 0.1, ‘camels’) #returns… well it’s obvious. number of parameters must match number of format sequences.