def func():
print('Good 😇')
print('Evil 😈')
func()
# expected output: 'Good 😇'
Python
Setting up Python environment...
Output
def func():
print('Good 😇')
print('Evil 😈')
func()
# expected output: 'Good 😇'
Setting up Python environment...