queralt - #16
Conversation
|
Well done completing the lab. Remember to review your syntax! Especially in the first few weeks, most of your errors will come from silly mistakes that you can fix easily. In question 1 you call greater() with new variables (num1, 2) instead of a and b. In question 7 you define a function twice. Small things like that are easy to fix but hard to notice when you've been coding all day! When everything is failing for no reason, I would suggest taking a break for 5-10 minutes and then coming back to check your code with a fresh perspective :) Also, Python is a good first programming language to learn because it tells you exactly what and where your error is. You can see the error in the red box that shows up when you try to run your code. Question 7 had an 'indentation error' which shows you which line to look at and try to understand what should be fixed. |
No description provided.