일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- development guides
- nav2 development guides
- ros2 튜토리얼
- ros2 foxy docker
- ros2 foxy tutorial
- nav2 tutorial
- error
- nav2 설치
- humble development guides
- Foxy tutorial
- ros2 configuring environment
- ros2 remapping
- first-time robot setup guide
- ros2 development guides
- nav2 dev contatiner
- Python
- ROS FOXY 튜토리얼
- CodeUp
- nav2 튜토리얼
- ros2 환경설정
- nav2 first-time robot setup guide
- nav2 development guides
- Nav2 document
- nav2 getting started
- ros2 튜토리얼 환경설정
- 코드업
- humble 환경설정
- docker foxy
- foxy nav2
- CODEUP 6073
Archives
- Today
- Total
BAN2ARU
[백준/Python] 2739번 구구단 본문
반응형
https://www.acmicpc.net/problem/2739
코드
N = int(input())
for i in range(9) :
print(f"{N} * {i+1} = {N*(i+1)}")
최근에 f-string 글을 올려서 f-string을 활용하는 방식으로 작성해 보았다.
f-string 관련 게시글 : https://ban2aru.tistory.com/41
728x90
'Coding Test > BaekJoon' 카테고리의 다른 글
[백준/Python] 15552번 : 빠른 A+B (0) | 2022.05.02 |
---|---|
[백준/Python] 8393번 합 (부제 : Python sum()함수) (0) | 2022.05.01 |
[백준/Python] 2525번 (0) | 2022.04.28 |
[백준/Python] 2588번 (0) | 2022.04.28 |
[백준/Python] 10926번 (0) | 2022.04.28 |
Comments