Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
682
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. def vertical_strings(string):
  2. """this function is supposed to print the letters of a word times the length of the word but it dosnt"""
  3. split_string = list(string[0:])
  4. for letters in split_string:
  5. print(split_string[0:] * len(split_string))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement