...

/

Coding Challenge Solutions #1

Coding Challenge Solutions #1

This lesson contains the solutions and explanations to the challenges in the lesson: Overview of Python.

We'll cover the following...

Coding challenge 1 solution

def addParenthesis():
print((10 + 5 - 1 * 2) / 2.0)

Explanation

The solution to the first challenge simply requires you to add parentheses around ...