[Solved] How can I ensure that my python Code Registers the row1 2 or 3 under a different segment of Code?
The problem is because you haven’t indented your code properly. Python code relies upon correct indentation to determine the order of processing for commands. Currently your code checks row1 value even if you didnt select row1, but you define row1 based on selecting it from the input. You need to indent the if statements under … Read more