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