Apr-17-2023, 12:11 AM
which is faster when arg1 is None?
code 1:
code 1:
def fun1(arg1,arg2): if arg1 is None: return None . . .code 2:
def fun1(arg1,arg2): if arg1 is None: return arg1 . . .
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.