Nov-20-2022, 04:23 AM
which is better or more Pythonic?
A:
A:
... if s1 < s2: return -1 if s1 > s2: return 1 return 0B:
... if s1 < s2: x = -1 elif s1 > s2: x = 1 else: x = 0 return xor, which way would you do it?
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.