Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
s = "python" n = 2 s = s[:-n] print(s) ''' run: pyth '''
s = "python" s = s[:-2] print(s) ''' run: pyth '''