Contact: aviboots(AT)netvision.net.il
42,849 questions
55,678 answers
573 users
text = "Python" padded = text.center(11) print(f"'{padded}'") ''' run: ' Python ' '''
text = "Python" padded = text.center(11, '*') print(padded) ''' run: ***Python** '''