Contact: aviboots(AT)netvision.net.il
41,316 questions
53,831 answers
573 users
def first_three(str): return str[:3] if len(str) > 3 else str print(first_three('python')) print(first_three('abc')) print(first_three('xy')) ''' run: pyt abc xy '''