Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. print('@yu$hi'.islower() == '@YU$HI'.isupper())
  2. print('123.3'.isdigit() == '123'.isnumeric())
  3. print(None is None)
  4. print(None is not '')
  5. print({1,3,2,2} == {1,2,3})
  6. print(({1,3,2,2} or {1,2,3}) is True)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement