Skip to content

Instantly share code, notes, and snippets.

@nattybear
Last active May 21, 2017 01:59
Show Gist options
  • Save nattybear/18127f4259b6db0dc9016274b6e0d45b to your computer and use it in GitHub Desktop.
Save nattybear/18127f4259b6db0dc9016274b6e0d45b to your computer and use it in GitHub Desktop.
GIST 사용 예제 - 여기에 간략한 설명을 적을 수 있다!
import pickle
f = open("test.txt", "wb")
data = {1: 'python', 2: 'you need'}
pickle.dump(data, f)
f.close()
import pickle
f = open("test.txt", "rb")
data = pickle.load(f)
print(data)
@nattybear
Copy link
Author

마크 다운은 아름답다!

  • 여기에 마크 다운을 이용해서 댓글을 달 수 있다!
  • 앞으로 코드 공유는 GIST를 이용하자!
  • 카톡으로 코드를 주면 읽기가 어렵다!

@nattybear
Copy link
Author

큰 글씨

  • 이건 리스트

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment