소스 검색

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 파일 보기