Advertisement
Guest User

Untitled

a guest
Jan 14th, 2021
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. 1)
  2. if cond:
  3.     a = 1
  4.     b = 1
  5. else:
  6.     a = "1"
  7.     b = "1"
  8.  
  9. 2)
  10.  
  11. if cond:
  12.     a = 1
  13. else:
  14.     a = "1"
  15.  
  16. if cond:
  17.     b = 1
  18. else:
  19.     b = "1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement