Contact: aviboots(AT)netvision.net.il
41,321 questions
53,836 answers
573 users
s = "python" s = s[:-3] print(s) ''' run: pyt '''
s = "python" n = 3 s = s[:-n] print(s) ''' run: pyt '''