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