'STUDY > Python' 카테고리의 다른 글

[Python] Reserved Words  (0) 2016.08.16
[Python] create name in Python  (0) 2016.08.16
    • and
    • as
    • assert
    • break
    • class
    • continue
    • def
    • del
    • elif
    • else
    • except
    • exec
    • finally
    • for
    • from
    • global
    • if
    • import
    • in
    • is
    • lambda
    • Not
    • or
    • pass
    • print
    • raise
    • return
    • try
    • while
    • with
    • yield


'STUDY > Python' 카테고리의 다른 글

파이썬 디버깅(Debugging python)  (0) 2016.09.28
[Python] create name in Python  (0) 2016.08.16
  • Class names start with an uppercase letter. All other identifiers start with a lowercase letter.
  • Starting an identifier with a single leading underscore indicates that the identifier is private.
  • Starting an identifier with two leading underscores indicates a strongly private identifier.
  • If the identifier also ends with two trailing underscores, the identifier is a language-defined special name.


'STUDY > Python' 카테고리의 다른 글

파이썬 디버깅(Debugging python)  (0) 2016.09.28
[Python] Reserved Words  (0) 2016.08.16

+ Recent posts