final Flashcards
mylist[[1,2,3], [4,5,6], [7,8,9]]
mylist[0]
[1,2,3]
mylist[1][0]
4
mylist[mylist[0][1][2]]
9
[i for i in range(5)]
0, 1, 2, 3, 4
[[i] for i in range(5)]
[0][1][2][3][4]
[[i]*2 for i in range(5)]
[0,0], [1,1], [2,2], [3,3], [4,4]
write a function that takes user input for the actual time and alarm clock time. print whether the alarm time has passed or the difference in minutes if it hasn’t
def main():
acutal_time = int(input(“Enter the actual time: “))
alarm_clock = int(input(“Enter alarm clock time: “))
actual_hour = acutal_time//100 actual_minute = actual_time%100 actual_total_min = actual_hour * 60 + actual_minute alarm_hour = alarm_clock//100 alarm_minute = alarm_clock%100 alarm_total_min = alarm_hour * 60 + alarm_minute diff = alarm_total_min - alarm_total_min if diff <= 0: print(" ") else: print(diff)
write function that replaces vowel of a string
def replace_vowel(aString, aChar):
result = ‘ ‘
vowels = ‘aeiouyAEIOUY’
for c in vowels:
result = result += a Char
else:
result = result += c
return result
write function minposition that, given a list of integers, returns the position of the last occurence of the smallest element
def minposition(intlist):
if len(intlist) == 0:
return -1
minval = intlist[0] minindex = 0 for i in range(len(intlist)-1, -1, -1): if minval >= intlist[i]: minval = intlist[i] minindex = i return minindex
manipulate a dictionary ‘D’ and then iterates over its keys and values to print them in a formatted manner
D = {“firstname”:”John”, “lastname”:”Doe”, “address”:”unknown”, “GPA”: 3.6}
D[“active”] = 10
for c in D:
print(“{}:{}”.format(c, D[c]))
result:
firstname:john
lastname:Doe
address:unknown
GPA:3.6
active:10
suppose we have n by m matrices, A and B, write a function to compute A+B
def addmatrix(A,B):
result = []
for i in range(len(A)):
newrow = []
for j in range(len(A[0])):
newrow.append(A[i][j] + B[i][j])
print(newrow)
result.append(newrow)
return result
for i in range(5):
print(i, 2**i)
0 1
1 2
2 4
3 8
4 16
what is value of 4!
factorial of 4 is 24
4.0 /10.0 + 3.5 * 2
7.4
10%4 + 6 /2
5
abs(4 -20//3)**3
8
sqrt(4.5 - 5.0) + 7 * 3
11
range(3, 10)
3, 4, 5, 6, 7, 8, 9ra
range(4, 13, 3)
4, 7, 10
range(15, 5, -2)
15, 13, 11, 9, 7
range(5, 3)
error
for i in range(1, 11):
print(i*i)
1, 4, 9, 16, 25, 36, 49, 64, 81, 100
for i in range [1, 3, 5, 7, 9]:
print(i, “:”, i**3)
print(i)
1:1
3:27
5:125
7:343
9:729
9
if a string is a palindrome
user_input = input(“Enter a string: “)
if len(user_input) < 3:
print(“False”)
else:
user_input_lower = user_input.lower()
if user_input_lower == user_input_lower[::-1]: print("True") else: print("False")
password validator. must be at least 8 characters long, one lower case, one uppercase and one number, one special character, and no space or tab
def pwdlength(password):
return len(password) >= 8
def containslower(w):
for c in w:
if ord(‘a’) <= ord(c) <= ord(‘z’):
return True
return False
def containsupper(w):
for c in w:
if ord(‘A’) <= ord(c) <= ord(‘Z’):
return True
return False
def containsnumber(w):
for c in w:
if ord(c) >= ord(‘0’) and ord(c) <= ord(‘9’):
return True
return False
def specialcharacters(w):
for c in w:
if c in “#@$”:
return True
return False
def nospace(w):
for c in w:
if c in “ “:
return True
return False
def secrequirement(password):
return containslower(password) and containsupper(password) and containsnumber(password)
def valid(password):
return pwdlength(password) and secrequirement(password) and specialcharacters(password) and nospace(password)
def get_password():
password = “”
while not valid(password):
password = input(“Enter a password”)
return password
print(get_password())
password validator. must be one special character, and no space or tab
def specialcharacters(w):
for c in w:
if c in “#@$”:
return True
return False
def nospace(w):
for c in w:
if c in “ “:
return False
return True
def valid(password):
return specialcharacters(password) and nospace(password)
def get_password():
password = “”
while not valid(password):
password = input(“Enter a password”)
return password
print(get_password())
password validator. must be one uppercase and one number
def containsupper(w):
for c in w:
if ord(‘A’) <= ord(c) <= ord(‘Z’):
return True
return False
def containsnumber(w):
for c in w:
if ord(c) >= ord(‘0’) and ord(c) <= ord(‘9’):
return True
return False
def secrequirement(password):
return containsupper(password) and containsnumber(password)
def valid(password):
return secrequirement(password)
def get_password():
password = “”
while not valid(password):
password = input(“Enter a password”)
return password
print(get_password())
password validator. must be at least 8 characters long and have one lower case
def pwdlength(password):
return len(password) >= 8
def containslower(w):
for c in w:
if ord(‘a’) <= ord(c) <= ord(‘z’):
return True
return False
def secrequirement(password):
return containslower(password)
def valid(password):
return pwdlength(password) and secrequirement(password)
def get_password():
password = “”
while not valid(password):
password = input(“Enter a password”)
return password
print(get_password())
check if each item is less than or greater than the next item
def verifysorted(inputlist):
for i in range(len(inputlist)-1):
if inputlist[i] > inputlist[i+1]:
return False
return True
a certain CS professor gives 5 point quizzes that are graded on the scale 5-A, 4-B, 3-C, 2-D, 1-F, 0-F. Write a program that accepts a quiz score as an input and prints out the corresponding grade
def grade_quiz(grade):
if grade == 5:
return ‘A’
elif grade == 1 or grade == 0:
return ‘F’
else:
return ‘invalid score’
grade_input = int(input(‘enter number score’))
if 0<= grade_input <= 5:
grade = grade_quiz(grade_input)
print(f”grade is {grade}”)
write a program that allows the user to type in a phrase and then outputs the acronym for that phrase. Note: the acronym should be all uppercase, even if the words in the phrase are not capitalized
def get_acronym(phrase):
words = phrase.split()
acronym = ‘‘.join(word[0].upper() for word in words)
return acronym
user_input = input(“Enter a phrase: “)
acronym = get_acronym(user_input)
print(f”The acronym for {user_input} is {acronym}”)
write a program to print the lyrics of the song ‘old mcdonald’. your program should print the lyrics for two different animals
def old_mcdonald(animal, sound):
print(“Old McDonald had a farm, E-I-E-I-O”)
print(f”And on that farm he had a {animal}, E-I-E-I-O”)
print(f”With a {sound} {sound} here, and a {sound} {sound} there”)
print(f”Here a {sound}, there a {sound}, everywhere a {sound} {sound}”)
print(f”Old McDonald had a farm, E-I-E-I-O\n”)
old_mcdonald(“cow”, “moo”)
old_mcdonald(“duck”, “quack”)
s1 = “spam”
s2 = “ni!”
spm
s1[0:2] + s1[-1]
s1 = “spam”
s2 = “ni!”
NI!
s2[0:2].upper()
s1 = “spam”
s2 = “ni!”
“The Knights who say, “ + s2
The Knights who say ni!