일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- pyhcarm
- COMMIT
- 중복제거
- github
- templates
- c#
- declare
- 백준
- PyCharm
- delphi 10.3
- GIT
- MSSQL
- Visual Studio
- python 3.7
- Delphi
- anaconda3
- dbadvgrid
- pythonanywhere
- blog
- Push
- hackerrank
- get_object_or_404
- TMS
- rank
- advColumnGrid
- python3
- 델파이
- queryset
- HTML
- Django
- Today
- Total
목록연산자 (2)
DevHyun
www.hackerrank.com/domains/sql Query a list of CITY names from STATION for cities that have an even ID number. Print the results in any order, but exclude duplicates from the answer. The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western longitude. 짧은 영어실력으로 번역하자면.. STATION 테이블의 CITY 필드를 추출해 내는 것이 목표이고, 조건은 ID가 EVEN(짝수) 일 것. 정렬 순서는 상관없고 중복제거 MSS..
www.acmicpc.net/problem/10869 10869번: 사칙연산 두 자연수 A와 B가 주어진다. 이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오. www.acmicpc.net python 3 a, b = map(int, input().split()) print(a+b) print(a-b) print(a*b) print(a//b) print(a%b) 왜 계속 틀리나 했더니 python 에선 나눗셈 할때 '/' 한번은 실수나숫셈, '//' 두번은 정수나눗셈 amazing 그렇다면 round나 버림같은 건 해줄필요가 없는건가..? * 유사한 연산자로 '*' 한번은 곱하기 '**' 두번은 제곱!