# jupyter notebook 상에서 파일 생성 명령어, 이미 있다면 덮어씌운다.
%%writefile fibo.py
def fib(n):
a, b = 0, 1
while b<n: # 조건이 true인 경우에만 실행되는 반복문
print(b, end=' ')
a, b = b, a+b
%%writefile fibo.py
# jupyter notebook 상에서 파일 생성 명령어, 이미 있다면 덮어씌운다.
def fib(n):
a, b = 0, 1
while b<n: # 조건이 true인 경우에만 실행되는 반복문
print(b, end=' ')
a, b = b, a+b
python jupyter magic %%writefile returns SyntaxError: invalid syntax