quizdown
# Python Lists (multiple choice)
What is the value of `x[2]`?
> Python lists are mutable!
~~~python
x = [2, 3, 4]
x[2] = 4
print(x[2])
~~~
- [ ] 1
- [ ] 2
- [ ] 3
- [x] 4
# What is the capital of Germany (single choice)?

> It's the largest city in Germany!
1. [ ] Frankfurt
1. [x] Berlin
1. [ ] Hamburg
1. [ ] Munich
# Put the [days](https://en.wikipedia.org/wiki/Day) in order (sequence)!
Quizdown also renders formulas:
$$
x = \frac{a+b^2}{\sqrt{b+c}}
$$
> Monday is the *first* day of the week.
1. Monday
2. Tuesday
3. Wednesday
4. Friday
5. Saturday
Back to top