Please read Getting good answers to your questions , and preferably also the guide linked to in the last link listed there. That second guide stresses ‘Search, and research’ before making a new post.
One of the things it discusses is that if you post a new post about something already posted about , you should say how that didn’t help you or how your issue is otherwise very different.
I’m encountering a strange issue in Jupyter Notebook when trying to use the input() function in my code cells. When I run the following code:
a = int(input("Enter a number: "))
print(a)
Instead of executing the code normally, Jupyter converts the cell into a Markdown cell and adds comments to the code like this:
### a = int(input("Enter a number: "))
print(a)
It doesn’t allow me to provide input, and the kernel shows a message like:
css
Copy code
Cell not executed due to pending input.
T…