http://d2.naver.com/helloworld/6033...
-
This is Slide 1 Title
This is slide 1 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
-
This is Slide 2 Title
This is slide 2 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
-
This is Slide 3 Title
This is slide 3 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
2018년 2월 27일 화요일
파이썬 요약
By schoolhompy at 2월 27, 2018
No comments
Pythonにおけるタブ補完について正しいものを選択肢から選びなさい。
正解: 変数とモジュール名の補完はインタープリタの起動時に自動で有効になっており、[Tab]キーで補完機能が呼び出せる。
-여러 줄로 된 문자열(multiline string) ''' or """
-입력은 이런게 가능
a = int(input('첫 번째 숫자를 입력하세요: ')) # int를 사용하여 입력 값을 정수로 변환
b = int(input('두 번째 숫자를 입력하세요: ')) # int를 사용하여 입력 값을 정수로 변환
print(a + b)
-한번에 두개 입력받기
변수1, 변수2 = input(문자열).split(기준문자)
-이런걸 맵으로 하면 이쁘다
a, b = map(int, input('숫자...
파이썬 시험대비
그냥 여기 다 읽어 보삼.
코딩 도장 풀어봐야함
https://dojang.io/mod/page/view.php?id=972
코딩스타일
http://pythonstudy.xyz/python/article/511-%ED%8C%8C%EC%9D%B4%EC%8D%AC-%EC%BD%94%EB%94%A9-%EC%8A%A4%ED%83%80%EC%9D%BC
http://pythonstudy.xyz/python/article/7-%EA%B8%B0%EB%B3%B8-%EB%8D%B0%EC%9D%B4%ED%83%80-%ED%83%80%EC%9E%85
バイナリデータレコードの処理を行うモジュールを選択肢の中から選びなさい。
正解: struct
-10페이지
// 기호는 소수점이하 버림
%는 소수점이하만
_ 는 마지막 연산...