Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
def create_string(str): sub_str = str[-2:] return sub_str * 5 s = create_string('Python') print(s) ''' run: ononononon '''