Contact: aviboots(AT)netvision.net.il
39,914 questions
51,847 answers
573 users
text = "Python" padded = text.center(11) print(f"'{padded}'") ''' run: ' Python ' '''
text = "Python" padded = text.center(11, '*') print(padded) ''' run: ***Python** '''