Define a function, fifth_from_end(word), that returns word's fifth character from the end.
Define a function, less_than_n(word, n), that returns True if word has less than n letters, False otherwise.
Create a function which takes no arguments and returns a tuple with 4 elements.
What does the * operator do a tuple and an integer?
|  It multiplies each element inside the tuple by the integer | ||
|  It adds the integer to each element of the tuple | ||
|  It repeats the entire tuple that many times | ||
|  It creates a set with repeated elements |
Write a function which takes a tuple and one integer, t and i, and returns element of t with index i.
Write a function that takes two strings and returns the smallest (one which comes before). Return the string even if they are equal.
d = {"a": 1, "b": 2, "a": 3}
Given the above script?
| What is the final value of d: | ||
| What is the final number of elements of d: |
result = (3, 3, 3) <= (3, 3, 3)
Given the above script, what is value of result?
Complete execution flow of the following program
fruit = "kiwi" for letter in fruit: print(letter)
Complete execution flow of the following program
>>>