Hello, I am making an online interpreter for the Python language. I want to know if there is any way to get input from CodeMirror. For example, I want to run this code:
username = input("Enter Username:")
FirstName = input("Enter FirstName:")
Hello, I am making an online interpreter for the Python language. I want to know if there is any way to get input from CodeMirror. For example, I want to run this code:
username = input("Enter Username:")
FirstName = input("Enter FirstName:")
This isn’t something that CodeMirror provides. You might be able to use the panel feature to build what you’re looking for.
Thanks, I will check it out