I was reading that Python allows for implicit line continuation as long as you are in brackets or parentheses; however in VS Code it doesn't seem to allow this behavior for me, and I'm required to use the explicit forward slash line continuation.
plt.title("Monte Carlo Dice Game [" + str(num_simulations) + "
simulations]")
Pylance error triggered:
Is there some sort of setting which I need to enable to allow implicit line continuation?
Tried using a return/linebreak within the parentheses of a function call, expecting no errors to pop up within VS Code, but an error occurred.