瀏覽代碼

Cleanup sources folder

master
Dimitri Merejkowsky 5 年之前
父節點
當前提交
cf6695b274
共有 8 個檔案被更改,包括 0 行新增21 行删除
  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 查看文件

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

+ 0
- 19
sources/03-fonctions.py 查看文件

@@ -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 查看文件

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

sources/05-airports.py → sources/airports/airports.py 查看文件


sources/airports.txt → sources/airports/airports.txt 查看文件


sources/02-devine-nombre.py → sources/devine-nombre/devine-nombre.py 查看文件


sources/macron.txt → sources/topwords/macron.txt 查看文件


sources/ruffin.txt → sources/topwords/ruffin.txt 查看文件