Advertisement
ABDULQOWIY

Untitled

Apr 1st, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. def first_longer_than_second(sammy, bamidele):
  2.     if len(sammy) > len(bamidele):
  3.         return True
  4.     else:
  5.         return False
  6. print(first_longer_than_second("sammy", "bamidele")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement