Giter VIP home page Giter VIP logo

interpy-kr's People

Contributors

ddanggle avatar ejsohn avatar gitbook-bot avatar hajoeun avatar junhyungjin avatar myungseokang avatar namnamseo avatar yangroro avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

interpy-kr's Issues

1.3 오타

[1.3 함수를 호출하기 위한 *args와 *kwargs] 에서 *kwargs 는 **kwargs 로 되어야 할 것으로 보입니다.

7.5 Decorator 설명 중 소스 코드의 청사진 부분 관련

from functools import wraps
def decorator_name(f):
  @wraps(f)
  def decorated(*args, **kwargs):
    if not can_run:
      return "함수는 실행되지 않습니다."
    return f(*args, **kwargs)
  return decorated

@decorator_name
def func():
  print "함수가 실행 중입니다."

can_run = True
print(func())
#output: 함수가 실행 중입니다

위의 소스처럼 can_runTrue인 상태에서 print(func())을 실행하면 실행 결과는

함수가 실행 중입니다.
None

으로 None까지 같이 출력됩니다. def decorated()의 return이 f()이고, f에 해당하는 func()는 return값이 없기 때문에요.
차라리 func()

@decorator_name
def func():
  return "함수가 실행 중입니다."

으로 하는 게 더 낫지 않을까요?

README 에 적혀있는 "차례"의 통일성

default

README 에 위와 같이 적혀 있습니다. SUMMARY 도 동일합니다.

저는 이 부분을 한글(영어) 식으로 모두 통일해서 작성하면 어떨까 합니다. 다만 이렇게 할 경우 애매한 것들이 몇개 있긴 하네요.
EX) 소개(Introduction), 객체 탐구(Object introspection) 등등

의견이 궁금합니다.

문체 통일

전체적으로 문체 통일을 위한 규칙들을 정하는 게 좋을 것 같습니다. 번역자가 여러 명이 되면 문체가 다 달라지기 쉬우니 어느 정도의 방향성을 잡는 게 필요해 보입니다.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.