











Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
An outline for the csse 120 course at rose-hulman institute of technology, covering topics such as numeric types (int and float), type conversion, lists, strings, and their respective representations and operations. Students will learn about integer and float values, conversions between types, list and string generation, accessing and changing list elements, and string operations.
Typology: Study notes
1 / 19
This page cannot be seen from the preview
Don't miss anything!












^ More on Numeric Types ^ Long integers vs floats ^ Type Conversion ^ Lists and Strings
^ An
int
is represented by a fixed-length sequence of bits.^ ^ A
bit
is a
bi nary digi
t : its value is either 0 or 1.
^ On typical 2007 operating systems, that length is 32. ^ How many different values can be represented by nbits? Thus there is a largest
int
value.
^ How to deal with larger integer values?^
Use floats? Do what other languages do? (overflow)
^ Allows arbitrarily large integers ^ Automatically created when needed:^ >>>
10000000000L You can specify a long literal >>>
4L/ 2L >>>
type(4L) <type 'long‘> Since
long
covers all integers (up to the memory
limits of the computer) why have an
int
type at all?
^ Why not use long for all integer calculations?
^ A sequence is an ordered collection of data items.There are two kinds:^
List: mutable
[3, 4, 6]
^ Tuple: immutable
(3, 4, 6)
^ Simple examples of generating lists and tuples:^
>>>
range(4, 11, 2) [4, 6, 8, 10] >>>
3*4, 3-4, 3+4, 3/ (12, -1, 7, 0)
^ What will each statement do or return?Assume executed in order, beginning with^ >>> myList = [3, 6, 8, 11, 7, 4, 5, 9, 10, 0,
2]
>>> len(myList) >>> myList[0] >>> myList[3] >>> myList[-3] >>> myList[1:5]
**# A slice of the list
myList[1:11:3] >>> myList[2:] >>> myList[4] = 12 >>> myList >>> myTuple = (2, 3, 4) >>**^
myTuple[1] = 6 # oops!
>>> myList = myList + [40, 50] >>> myList >>> myList[1:5] = [0, 0] >>> myList >>> [1, 2, 4] * 3 >>> [ii for i in range(6)] >>> range(4) + range(5) >>> myList.index(9) >>> myList[myList.index(9)] >>> myList[0:myList.index(9)] >>>[2, 3, 4, 5][2]*
^ String literals: ^ "One\nTwo\nThree" ^ "Can’t Buy Me Love" ^ ′
I say, "Yes."
You say, "No."
′
^ """I don't know why you say "Goodbye,\”
I say "Hello." """
^ Many of the operations listed in the book, while they workin Python 2.5, have been superseded by newer ones. ^ + is used for String concatenation: "xyz" + "abc" ^ * is used for String duplication: "xyz " * 4 ^ A String method:
split
breaks up a string into separate
words.^ ^ >>> franklinQuote
=^ 'Who
is^
rich?
He^
who^
is^ content.
'^ +
'Who
is^
content?
Nobody.‘
^ >>>
franklinQuote.split() ['Who',
'is',
'rich?',
'He',
'who',
'is',
'content.',
'Who',
'is',
'content?',
'Nobody.']
^ >>>
franklinQuote.lower() ^ 'who
is^
rich?
he^
who^
is^ content.
who
is^
content?
nobody.'
beatles
=^
['John',
'Paul']
beatles.append('George')
beatles ['John', 'Paul', 'George'] >>>
beatles
+^
['Ringo']
['John', 'Paul', 'George', 'Ringo'] >>>
beatles ['John', 'Paul', 'George'] >>>
beatles
=^
beatles
+^
['Ringo']
beatles ['John', 'Paul', 'George', 'Ringo'] >>>
beatles[1] 'Paul' >>>
beatles[1][2] 'u'
^ Python’s fancy term for this
: list comprehension
^ >>> [ii for i in range(6)]^ [0, 1, 4, 9, 16, 25] ^ >>> [[i, ii] for i in range(5)]^ [[0, 0], [1, 1], [2, 4], [3, 9], [4, 16]]
^ Start in class, finish for homework. ^ Ask user for an odd integer N that is at least 3. ^ Draw the following pictures:^
A “pizza pie” with N slices. A circle with an inscribed regular polygon with N sides. A circle with an inscribed star generated by connectingevery other vertex of the regular polygon.
^ See next slide for sample pictures and the followingslide for hints. ^ You can do a separate program for each (copy andpaste are your friends, but get the first one right first).
^ N=5: ^ N=7:
^ In the Homework 4 folder on ANGEL, there arethree Drop Boxes named Pizza, Poly, and Star. ^ Place your Python code files in the correspondingdrop boxes before the beginning of your section’sSession 5 class meeting.