-
String Manipulations
What does the code below print?
s = "6.00 is 6.0001 and 6.0002" new_str = "" new_str += s[-1] new_str += s[0] new_str += s[4::30] new_str += s[13:10:-1] print(new_str)
-
For Loops with Strings
How many times will the code below print “common letter”?
s1 = "mit u rock" s2 = "i rule mit" if len(s1) == len(s2): for char1 in s1: for char2 in s2: if char1 == char2: print("common letter") break
In-Class Questions and Video Solutions
Lecture 3
Course Info
Instructors
Departments
As Taught In
Fall
2016
Level
Learning Resource Types
assignment
Problem Sets
notes
Lecture Notes
theaters
Lecture Videos
assignment_turned_in
Programming Assignments with Examples