Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. input1:text something blablabla
  2. input2: high of stars
  3.  
  4. input1 = Your Name
  5. input2 = 3
  6. output:
  7. ***********
  8. *Your Name*
  9. ***********
  10.  
  11. def function(text):
  12. """start"""
  13. name = len(text)
  14. num = int(input())
  15. for i in range(num):
  16. for j in range(name + 2):
  17. if i == 0 or j == 0 or i == num - 1:
  18. print("*", end="")
  19. print()
  20. function(input())
  21.  
  22. ***********
  23. *
  24. ***********
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement