Giter Site home page Giter Site logo

fastcampus_sales's Introduction

FastCampus_sales

파이썬 협업 적는 법 - PE88

모듈

  • 가급적이면 이름을 짧게 만들어서 tab으로 만들 수 있게끔한다.
  • 패키지나 모듈 이름은 모두 소문자로만 한다.
  • 모듈 이름이 길어지면 underbar를 사용한다.

클래스

  • 클래스는 CapWord(CamelCase)로 작성
  • Exception 클래스이면, 이름+Error를 적는다.

주석

  • 코드상 의도가 분명한 경우는 주석을 달지 않는다. -> 프린트문, 포문 등
  • 주석은 대문자로 시작
  • 완벽한 문장으로 끝마친다.
  • 코드 변경을 하면 주석도 변경해야한다.
  • 주석은 가급적 영어로 남겨야 한다.

블럭 주석(바로 뒤에 오는 코드에 대해 설명하는 것)

  • 주석 내용이 다루는 코드와 동일한 들여쓰기를 한다.
  • 한 개의 #를 달고 기록

인라인 주석(코드랑 같은 줄에 기록하는 주석)

  • 코드와 적어도 두 칸 이상 분리 후 기록
  • #를 붙인 후 기록
  • 굳이 남기지 않아도 되는 것은 안남긴다.

도큐먼트 스트링 (docstrings)

  • 모듈, 클래스 ,함수, 메소드 등에 대해 정보를 제공하는 용도
  • 세 개의 쌍따옴표로 문장을 감싼다.
  • 함수 바로 밑에 내용을 적는다.

def function(a):
    """이것은 함수입니다.

    Args:
        a: 매개변수로 뭔가를 받습니다.

    Returns:
        result : 뭔가를 반환합니다.
    """
    return result


미니 프로젝트 : 패스트 캠퍼스 거래 내역에 따른 인사이트 값 찾기

1일차 토론

교육 기업의 비즈니스 모델을 찾고 그에 따른 매출액의 상승의 비결을 찾아보자.

fastcampus_sales's People

Contributors

do-racoon avatar nayoung511 avatar

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.