Chapter 4 Flashcards
Programs are composed of what?
Modules.
Modules contain _____________?
Statements
Statements contain ______________?
Expressions
Expressions _______ and __________ objects
Create, and process
What are literals?
The expressions that generate objects
Everything that is processed in python is an ________?
Object.
Strings are used to store __________ __________ as well as __________ _________ of ________.
Textual information, arbitrary collection ,bytes
items in sequences are located and fetched using by their ______________?
relative position
Strictly speaking strings are sequences of _________ __________.
one character strings
if S = “Spam”, how would I return the length of hte string?
len(S).
len() is a built in functin in python.
With the string S=”Spam” what would the expression S[0} return?
“S”
Define what an index of a sequence is .
is a numbering system to identify the position of a charater in a sequence. always starts with 0.
Python variable never need to be _______ ahead of time?
declared.
Indexing is based on a ___________?
zero based position.
a variable is created when i _______ a _________ to it.
assign, value
positive indexes count from the ________. while negative indexes count from the _________.
front, back.
Slices are a way to extract an entire _________ from a string in a single step.
column
the form for slices X[ I :J] means what ?
give me everything from X from the offset I up to but not including offset J.
if S=”Spam” what does S[:3] return?
‘Spa’
if S=”Spam” . What does S[:] return?
‘Spam’
with respect to strings . how would i explain concatenation?
joining two strings to make one new string
With respect to strings,how would i explain repetition?
making a new string by repeating another.
if I had the string S=”Spam” and “xyz” how would i make them one string?
S+’xyz’
how would i repeat the string S=”Spam” 8 times and make a new string?
S * 8
describe the meaning of + for numbers and strings
for numbers it means addition.
for strings it means concatenation.
polymorphism in pythons means what?
the meaning of the operation depends on the objects being operated on.
Every string operation is defined to produce a new string as its result, because every string is _______ in python.
immutable.
what does immutable mean?
something cannot be changed in place after it has been created.
What core types of objects are immutable?
- numbers , strings , and tuples.
immutability can be used so that you can guarantee that an object will remain _________throughout your program.
constant.
descibe a method , w.r.t. a string.
functions attached to the object, which are triggered with a call expression.
String methods are the _____ ______ of ___________n tools in python.
first line, test-processing.
if S=”Spam”. what does S.find (‘pa’) return? , why?, and what happens to the original string?
1,
;because the method used is looking for the number of ‘pa” found in the string “Spam”
;The original string remains unchanged because strings are immutable. we simply created a new string.
if S=”Spam”. what does S.replace(‘pa’, ‘XYZ’ ) return? and why?
“SXYZm”
If I have a String line = ‘ aaa,bbb,ccc,dd’ what does the code line.split(‘,’) return?
[ ‘aaa’ , ‘bbb’, ‘ccc’ , ‘dd’ ].
If I have a String line = ‘ aaa,bbb,ccc,dd’ what does the code line.upper() return?
‘AAA,BBB,CCC,DD’.
string have an advanced substitution operation known as _________?
formatting.
if i have the following : ‘%s , eggs , and %s’ % (‘spam’ , ‘SPAM’) what will be returned?
‘spam , eggs, and SPAM’
if i have the following : ‘{1}, eggs , and {0}, {2}’ .format(‘spam’ , ‘SPAM’, ‘Spam’) what will be returned?
‘SPAM, eggs and spam Spam
If i have the string S=’Spam’. what built in function will return the attributes of the object S=’Spam’.
dir() function.
- example:»_space;> dir(S)
- because methods are function attributes.
With the string S= ‘A\nB\tC’. what does the \n and \t stand for? and and if I perform the print(S) action what does it return?
- \n for end of line
-\t for tab.
-A
B C
Lists are also __________?
Sequences.
Education:
*The Python list object is the most general sequence provided by the language.
*lists are positionally ordered collections of arbitrarily typed objects , They also have no fixed size.
Education:
*Lists are mutable—unlike strings. lists can be changed in place by assignment to offsets as well as a variety of list method calls .
lists are _______ order ___________ of __________ typed objects. they also have ___ fixed ______ .
positionally , collections, arbitrarily, no, size.
Becuase list are sequences , list support all the _________ ___________ so far discussed.
sequence operations
if L = [ 123, ‘spam’ , 1.23 ] what does the command len(L) return?
3
if L = [123 , ‘spam’, 1.23] what does L[0} return?
123
do list have a type constraint?
no # which means a list can have strings , integars, floating point numbers .
if I have the list L = [123 , ‘spam’, 1.23], how would I add ‘NI’ to the list ?
L.append(‘NI’)
if I have the list L = [123 , ‘spam’, 1.23] what does L.append(‘NI’) return?
> > > [123 , ‘spam’, 1.23, ‘NI’]
Notice that the append method expands the list size and inserts the object at the end of the list.
if L = [123 , ‘spam’, 1.23] what does L.pop(2) do?
it returns >>> 1.23 # shrinking: delete an item based on the given offset.