Print the given pattern in Python
print() - Question 3
In this question, we will print the given pattern in python programming using the print() function. To know more about print() function click on the print() function lesson.
Q3) Write a program in python to print the given pattern using print() function on the screen.
************
*STUDENT*
************
Program
print('*********')
print('*STUDENT*')
print('*********')
Output
********* *STUDENT* *********