// Projects

Projects Quiz

// question 1 of 10
What does for key, value in my_dict.items() do?
// question 2 of 10
What does the col_index reset mechanism do in ADFGVX transposition?
// question 3 of 10
What is the difference between remove() and discard() on a set?
// question 4 of 10
What is the output of: list("Bull")?
// question 5 of 10
What is the output of: sorted({"B": 1, "A": 2, "C": 3})?
// question 6 of 10
What is the output of: "hello world".split()?
// question 7 of 10
What does int("42") return?
// question 8 of 10
What is the output of: {x for x in [1,2,2,3,3]}?
// question 9 of 10
What is the purpose of if __name__ == "__main__"?
// question 10 of 10
What does a set guarantee about its elements?