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