phrase_sans_espaces1~20171216-162530.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # Copyright (C) 2016 Constant, Algolit
  4. # This program is free software: you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation, either version 3 of the License, or
  7. # (at your option) any later version.
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details: <http://www.gnu.org/licenses/>.
  12. # Reduction of letters
  13. # From string to list & back
  14. # A string: a list of characters, unchangeable, but treatable
  15. # See: https://www.tutorialspoint.com/python3/python_strings.htm
  16. # Write sentence as string
  17. sentence = "Je vois La Vie en rose... Tu vois Le Ciel en vert!"
  18. # Print sentence
  19. print("phrase originale:", sentence)
  20. # Convert sentence in one word (remove spaces)
  21. #one_word = sentence.strip(" ")
  22. #print("sans les espaces:", one_word)
  23. # define new word as list
  24. new_word = []
  25. # Convert sentence in list of words
  26. words = sentence.split()
  27. #print(words)
  28. # For each word in word list
  29. for word in words:
  30. # remove capital letters (string operation)
  31. #word = word.lower()
  32. # Clean punctuation (string operation)
  33. #word = word.strip(" ;''?:,()!.\").”-")
  34. # add word to new word list
  35. new_word.append(word)
  36. #new_letter = []
  37. #letter = words.split()
  38. #print(letter)
  39. # Write words as one, without spaces
  40. print("phrase sans espaces:", "".join(new_word))