In IPython, how do we do, ie. what key stroke we should perform, to get into a new line inside the current input block without executing or exiting it ?
Hello,
do you mean as in the new line character: '\n'
total = 55.00
print(f'\nHello, this is the current total cost: ${total}.')
Note that a new line character has been added at the very beginning of the line. This will lower the printed line by one line space. You can add multiple in series if you so choose to.
Control-O
Yes, IMHO is the concluded solution
