MichalDK

Make fancy

Sep 22nd, 2021 (edited)
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. def make_fancy(text, n):
  2.     pointer = 0
  3.     for i in text:
  4.         print(pointer * " ", n * i)
  5.         pointer += 1
  6.  
  7.  
  8. if __name__ == "__main__":
  9.     make_fancy("KOKOT", 7)
Add Comment
Please, Sign In to add comment