first of all, your code:
print(print('hello') returnis missing a closing parentheses and should be
print(print('hello'))There is no need for a return statement. and it shouldn't be included (but it won't hurt the code)