Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. def contains_7(x):
  2. if(x%7==0 & x in '7'):
  3. print ("podzielna")
  4. else:
  5. print ("niepodzielna")
  6. pass
  7.  
  8. contains_7(14)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement