Answer to Question #85190 in Python for oishi dass
Write a program to output the following:
**********
* *
* PYTHON *
* *
**********
1
2019-02-18T05:49:58-0500
s = 'python'.upper()
l = len(s)
print('*'*(l+4))
print('*', ' '*l, '*')
print('*', s, '*')
print('*', ' '*l, '*')
print('*'*(l+4))
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
Python
Comments
Leave a comment