Guest User

Untitled

a guest
Jan 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. def f():
  2. a = []
  3. x = 0
  4. while x < len(word):
  5. a.append(word[x])
  6. x += 1
  7. if x > len(word):
  8. break
  9. return a.sort()
  10.  
  11.  
  12.  
  13. word = input()
  14. f()
  15. '''Aqui ficaria o print. Seria algo parecido com "print(f())"? Tentei exatamente isso e a resposta foi "None".'''
Add Comment
Please, Sign In to add comment