히바리 쿄야 와 함께 하는 Developer Cafe
def GuGu(n): result = [] result.append(n*1) result.append(n*2) result.append(n*3) result.append(n*4) result.append(n*5) result.append(n*6) result.append(n*7) result.append(n*8) result.append(n*9) return result print(GuGu(2)) [2, 4, 6, 8, 10, 12, 14, 16, 18] i = 1 while i < 10: print(i) i+=1 1 2 3 4 5 6 7 8 9 def GuGu(n): result = [] i = 1 while i < 10: result.append(n * i) i = i + 1 return resul..
D:\Python>mkdir mymod D:\Python>move mod2.py mymod 1개 파일을 이동했습니다. D:\Python>python Python 3.9.1 (tags/v3.9.1:1e5d33e, Dec 7 2020, 17:08:21) [MSC v.1927 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> sys.path ['', 'C:\\Users\\SONG\\AppData\\Local\\Programs\\Python\\Python39\\python39.zip', 'C:\\Users\\SONG\\AppData\\Local\\Progra..
함수를 먼저 정의해야 함 def add(a,b): return a + b add 라는 함수를 먼저 정의함 a = 3 b = 4 c = add(a, b) print(c) 7 print(add(3,4)) 7 def 함수이름(매개변수): 수행할 문장 ... return 결과값 a = add(3,4) print(a) 7 결과값을 받을 함수 = 함수이름(입력인수 1, 인력인수 2,...) def hello(): return 'hello' 헬로우라는 함수를 정의 a = hello() 헬로우 함수를 a 변수에 저장 print(a) a값을 호출 hello 결과값 나옴 결과값이 없는 함수를 호출하면 돌려주는 값이 없기 떄문에 add 함수를 사용 add(3,4) 함수이름(입력인수1, 입력인수2) Out[12]: 7 def..