Exercise: Exit function early

Here, the function func currently prints both a 'good' and an 'evil' message. Use what you learned to make it only print the 'good' message.
def func():
print('Good 😇')
print('Evil 😈') func() # expected output: 'Good 😇'
Python
Setting up Python environment...
Output