Skip to content

Commit

Permalink
co
Browse files Browse the repository at this point in the history
  • Loading branch information
amamov committed Jun 1, 2021
1 parent e111555 commit 47fd205
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
8 changes: 8 additions & 0 deletions Ch-02/study.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
def function(arg1, arg2, *argsss, **ssss):
print(arg1)
print(arg2)
print(args)
print(kwargs)


function(1, 2, 3, 4, 5, name="amamov", age=12)
4 changes: 4 additions & 0 deletions Ch-03/01-class.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# encapsulation : class 기초 사용법
# * 객체(object)의 **속성과 행위(methods)**를 하나로 묶고, 구현된 일부를 외부에 감추어 은닉한다.
# 이번 시간에는 class에 대한 기본적인 사용법을 익히는 시간을 갖도혹하겠습니다.
# 저희가 만들어볼 예제는 사칙연산 프로그램인데요.


# ** 사칙연산 계산기

Expand Down
Empty file added Ch-03/study.py
Empty file.

0 comments on commit 47fd205

Please sign in to comment.