Guest User

Untitled

a guest
Dec 17th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. no = [i for i in range(1, 20) if i % 2 == True]
  2.  
  3. yes = [i for i in range(1, 20) if i % 2 == False]
  4.  
  5. print(f"{no}n{yes}")
Add Comment
Please, Sign In to add comment