What is the difference between a method and a function?
What is the negation of the Python expression \(a < 0 \mbox{ } and \mbox{ } b > 0\)?
For each of the following snippets of Python code, give what would be printed to the command line if run. If the snippet will not print anything because of an error, just put error.
a_string = "0123456789" for index in range(0, len(a_string), 2): print(a_string[index])
a_string = "abcd" for character in a_string: print(a_string + a_string)
a_string = "abcd" print(a_string[2:4] + a_string[0:2])
accumulator = 0 MAX_VALUE = 10 while(accumulator < MAX_VALUE): accumulator = 2 * (accumulator + 1) print(accumulator)
a_string = "my string!" while(a_string[0] != ' '): a_string = a_string[1:] print(a_string)
a_string = "abcd" b_string = "" index = 0 while index <= len(a_string): b_string = a_string[index] + b_string index = index + 1 print(b_string)
What is the decimal number 61 in binary?
Write a function called count_uppercase(my_string)
which takes as a parameter a string of characters. It should
return an integer, the number of uppercase letters
in my_string. Include your own test cases.
Write a function called print_initials(my_string)
which takes as a parameter a string of characters of the
form "name1 name2"
. Your function should return a
string of length 2, which is the concatenation of the first
character of each name in the string.