Exercise: Comment out line of code

Here, we create the variable num and print its value. But, there's another print() command that we don't want to execute. Transform the respective line into a comment to prevent it from being executed.
num = 5 # comment out the following line
print('😈😈😈')
print(num) # expected output: 5
Python
Setting up Python environment...
Output