Advertisement
nitty01

Untitled

Feb 11th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1.  
  2. def divisible_by_three_and_four(num):
  3.     if num%3==0 and num%4==0:
  4.         return True
  5.     else:
  6.         return False
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement