Browse Source

Cleanup sources folder

master
Dimitri Merejkowsky 5 years ago
parent
commit
cf6695b274
8 changed files with 0 additions and 21 deletions
  1. +0
    -1
      sources/01-bonjour.py
  2. +0
    -19
      sources/03-fonctions.py
  3. +0
    -1
      sources/06-top-words.py
  4. +0
    -0
      sources/airports/airports.py
  5. +0
    -0
      sources/airports/airports.txt
  6. +0
    -0
      sources/devine-nombre/devine-nombre.py
  7. +0
    -0
      sources/topwords/macron.txt
  8. +0
    -0
      sources/topwords/ruffin.txt

+ 0
- 1
sources/01-bonjour.py View File

@@ -1 +0,0 @@
print("bonjour, monde!")

+ 0
- 19
sources/03-fonctions.py View File

@@ -1,19 +0,0 @@
def add(a, b):
return a + b

nombre_1 = 1
nombre_2 = 2
c = add(nombre_1, nombre_2)
print(c)



def greet(name, shout=False):
print("Hello,", end=" ")
print(name, end="")
if shout:
print("!", end="")
print("", end="\n")

greet("John")
greet("Jane", shout=True)

+ 0
- 1
sources/06-top-words.py View File

@@ -1 +0,0 @@
topwords/6.py

sources/05-airports.py → sources/airports/airports.py View File


sources/airports.txt → sources/airports/airports.txt View File


sources/02-devine-nombre.py → sources/devine-nombre/devine-nombre.py View File


sources/macron.txt → sources/topwords/macron.txt View File


sources/ruffin.txt → sources/topwords/ruffin.txt View File