Which is the proper syntax for a list comprehension that returns a list of only odd numbers from a tuple named nums? code example
Example: x for x in python
# This could be said as:
x for x in thing:
# Or
for x in thing:
return x # Or whatever that puts x in some variable
# Same thing, just really dodgy syntax.