Back to Lesson

Data Translation Mapping

Filter parameters executing functional translations seamlessly.

Instructions

  • Given raw mappings
    prices = [10, 20, 30]
    .
  • Leverage
    map
    combined cleanly utilizing explicit
    lambda x: x * 1.5
    configurations!
  • Build
    list(map(lambda x: x * 1.5, prices))
    .
  • Print the array list evaluated metrics properly.
main.py
main.py