Code here:
#This is the tricky part, because I can’t set this command in a way that centers all the elements while maintaining the space.
print(‘{operand_one}\n{operator:}{operand_two}\n{line}\n{result} ‘.format(operand_one = operand_one, operator = operator, operand_two=operand_two, line=’‘,result=result ))
# This was my first attempt before reading into the formar() method.
print(’ ', num1, ‘\n’, ‘+’, num2, '\n_____\n ‘, result, “\n”, sep=’’)