/autograding-example-python1

GitHub Classroom autograding example repo with Python and Pytest

Primary LanguagePython

Assignment-1: Basics in Python programming

Fix the bug in the following program by copying the below code in the hello.py inside the function. Return the userNumSquared variable from the function.

  1. userNum = 3
  2. userNumSquared = userNum + userNum # Bug here; fix it when instructed
  3. print(userNumSquared, end=' ') # Output formatting issue here; fix it when instructed