Check if a user qualifies for a two-for-one discount by checking if the length of basket is at least 2.
basket
2
Make sure to pick len(basket), followed by >=, and finally 2.
len(basket)
>=