lists and dicts — the bones of every api8 / 9
the one-liner python writes when it's showing off
Write a list comprehension that takes the list prices = [12, 50, 8, 99, 30]
and produces a new list containing only the prices over 15. Print the
result.
Expected output:
[50, 99, 30]
⌘↵ runs the editor.
Booting Python…
Output
[promptdojo:~]$ _