1
2
3
4
5
6
|
width = int(input('width: '))
height = int(input('height: '))
area = width * height / 2 # /는 소수점, //는 정수형으로 계산함.
print('area: ', area)
|
'PRACTICE > Basic' 카테고리의 다른 글
[Flask] 로그인 페이지, 로그인 성공 시 flash 메시지 출력하기 (0) | 2020.11.25 |
---|---|
[Flask] input값에 따라 Pass, Fail 문자 출력하기 (0) | 2020.11.24 |
[Python, OpenCV] 두 개의 이미지 파일 합성하기 (0) | 2020.11.11 |
[Python, OpenCV] boxFilter 와 bilateralFilter 를 5초 간격으로 번갈아 실행시키기 (0) | 2020.11.11 |
[C] 함수를 통해 로또 번호 생성, 출력하기 (난수 사용) (0) | 2020.11.10 |
댓글