Your future you will thank you for this: The keyword `assert` takes an expression to its right. If the expression evaluates to `True`, or Truthy, everything is fine. But if it doesn’t, you get an `AssertionError`. That's a pretty unhelpful/generic error... Here's the fix:
2 likes 1 replies
?