
Scott P. answered 06/24/21
28 years in IT roles, studied Computer Science at MSU
Depending on the actual output it is either:
print(f'{num_1} ** {num_2} = {num_1 ** num_2}') -> "5 ** 4 = 625"
or
print(f'num_1 ** num_2 = {num_1 ** num_2}') -> "num_1 ** num_2 = 625"
Maggie D.
Thank you for your time! Nothing worked so I just emailed the professor. :)06/24/21