Przeglądaj źródła

Cleanup sources folder

master
Dimitri Merejkowsky 5 lat temu
rodzic
commit
cf6695b274
8 zmienionych plików z 0 dodań i 21 usunięć
  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 Wyświetl plik

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

+ 0
- 19
sources/03-fonctions.py Wyświetl plik

@@ -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 Wyświetl plik

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

sources/05-airports.py → sources/airports/airports.py Wyświetl plik


sources/airports.txt → sources/airports/airports.txt Wyświetl plik


sources/02-devine-nombre.py → sources/devine-nombre/devine-nombre.py Wyświetl plik


sources/macron.txt → sources/topwords/macron.txt Wyświetl plik


sources/ruffin.txt → sources/topwords/ruffin.txt Wyświetl plik