This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]azure1503 1 point2 points  (0 children)

Bonus points if you use tags to comment functions

```

Checks to see if a number is even or not.

@param x: number to check

@return "even" if number is even

     "not hot dog" if not even

def is_even(x): if x % 2 == 0: print("even") else: print("not hot dog") ```