250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- List Comprehension
- where
- SQL 고득점 Kit
- 슬라이싱
- 파이썬 슬라이싱
- date_format
- 코딩테스트 연습
- YOLOv5
- 프로그래머스
- css
- 아이엠어바텐더
- Len
- python
- GIT
- 파이썬
- 데이터
- pcce 기출문제
- sql
- Python3
- 단어 공부
- 프로젝트
- count
- html
- 백준
- Django
- 파이썬 몫
- 설계
- Join
- map
- ORDER BY
Archives
- Today
- Total
목록10869 (1)
nan + nan = 2nan
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bM58Uu/btra9Wta5LU/J72GkWTsHpcupNoHzze3ZK/img.png)
코드 입력 A, B = map(int,input().split()) print(A + B) print(A - B) print(A * B) print(A / B) 앞서 게재한 글들의 총집합 본이라고 보면 될 것 같다. map함수를 사용하지 않고 진행을 해본다면, 이런 코드도 가능하다. A, B = input().split() print(int(A)+int(B)) print(int(A)-int(B)) print(int(A)*int(B)) print(int(A)/int(B)) 아직 햇병아리 수준이기 때문에 어떤 코드가 더 효율적인지에 대해서는 잘 알지 못한다. 여러 방법들을 생각하고 고민하는 과정이라고 생각하고 더욱 더 노력해야겠다. 출처 : 백준 Online Judge https://www.acmicpc.n..
Python/백준 알고리즘
2021. 8. 3. 16:52