Skip to content
Snippets Groups Projects
Commit b63faa5e authored by Kevin Fairise's avatar Kevin Fairise
Browse files

added ci

parent 9cc89ff2
Branches
No related tags found
No related merge requests found
......@@ -23,13 +23,13 @@ def convert(word):
if __name__ == "__main__":
if len(sys.argv) == 0:
print("Veuillez entrer une phrase en paramètre.")
else:
convertedText = ""
for sentence in sys.argv:
for sentence in sys.argv[1:]:
words = sentence.split(" ")
for word in words:
convertedText += convert(translate(word))
print(convertedText)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment