fork download
  1. # your code goes here
  2.  
  3. class Player:
  4. def __init__(self, a, b):
  5. self.name = a
  6. self.scoe =b
  7. self.prev_score = None
  8.  
  9.  
  10.  
  11. p = Player("akhil", "10")
  12.  
  13. if hasattr(p, 'scoe') and p.scoe is not None and "10" in p.scoe.lower():
  14. print("LOL")
  15. else :
  16. print("JUL")
Success #stdin #stdout 0.04s 9608KB
stdin
Standard input is empty
stdout
LOL