Commit 505c4e26 authored by Arnaud Legrand's avatar Arnaud Legrand

Ajout premier programme python

parent 1fbed957
...@@ -15,3 +15,15 @@ du contenu supplémentaire. ...@@ -15,3 +15,15 @@ du contenu supplémentaire.
* Item * Item
* Item * Item
* Item * Item
## Helloworld Python
```python
#!/usr/bin/python3
import sys
if len(sys.argv) > 1:
print("Hello " + sys.argv[1])
else:
print("Hello")
```
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment