I written the following code in Databricks notebook
name = input("Please enter your name: ")
age = input("How old are you, {0}?".format(name))
print(age)
As you guessed, after running the cell I am asked to 'Please enter your name:' The problem is I don't where to make the entry. If this was written in intelliJ IDEA or IDLE I would be given a separate window to enter my name. However, with Databricks notebook, even if I enter the answer in a different cell it appears to be constantly waiting for an input, see image:
I really should know the answer to this

