Advertisement
JacksonBarbosa

Untitled

Dec 28th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. def repetir(texto) :
  2.     texto += '-'
  3.     if(len(texto) < 5):
  4.         return repetir(texto)
  5.     return texto;
  6.  
  7. print(repetir("-"))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement