[Solved] What's the matter with this code after installing matplotlib using pydroid repo app that it gives EOF error?
inp_dict = {"m": "Enter slope: ", "b": "Enter the y-intercept: ", "x1": "Enter the lower bound of x: ", "x2": "Enter the upper bound of x: "} A = [] for i in inp_dict: a = input(inp_dict[i]) # - - - > EOF A.append(a) print(A) Here's the input and output on an online editor (Programiz): Enter slope: 3 Enter the y-intercept: 5 Enter the lower bound of x: 1 Enter the upper bound of x: 5 Out: ['3', '5', '1', '5'] I commented out the lib bit later on in the original code, didn't work. I uninstalled the repo app, didn't work (Although I may have to repeat that with pydroid?) Also Error message is displayed on a new window now, as opposed to terminal part of Pydroid. And what's matplot gotta do with this anyway?(edit: other stuff's also installed?) Can someone help? If this is something specific with this editor, please let me know. Thank you.