일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
Tags
- nav2 설치
- docker foxy
- CODEUP 6073
- nav2 튜토리얼
- Nav2 document
- humble 환경설정
- ROS FOXY 튜토리얼
- Foxy tutorial
- nav2 development guides
- CodeUp
- Python
- humble development guides
- error
- first-time robot setup guide
- nav2 tutorial
- ros2 development guides
- setting up transformations
- ros2 튜토리얼 환경설정
- nav2 first-time robot setup guide
- foxy nav2
- ros2 remapping
- nav2 getting started
- ros2 transformations 개념
- ros2 환경설정
- 코드업
- ros2 foxy docker
- ros2 튜토리얼
- ros2 foxy tutorial
- ros2 configuring environment
- nav2 dev contatiner
Archives
- Today
- Total
목록백준 10951 (1)
BAN2ARU
[백준/python] 10951번 : A+B - 4
10951번: A+B - 4 (acmicpc.net) 10951번: A+B - 4 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net 풀이 try-excep 구문을 활용하여try에 대한 오류(a,b에 아무런 입력이 없거나 int형이 아닌 경우)가 발생한 경우에 except 구문이 동작함 import sys while True : try : a,b = map(int, sys.stdin.readline().split()) print(a+b) except : break
Coding Test/BaekJoon
2022. 9. 14. 19:24