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 |
29 | 30 |
Tags
- Python
- nvmrc
- React
- 다리놓기
- Rest
- leetcode977
- iP
- 커스텀알락
- leetcode189
- yarn-berry
- 리액트
- youtube iframe
- 프로토타입
- 기초
- css
- Spread
- firebaseui
- 타입스크립트
- JS
- 파이썬
- 백준
- 파이어베이스로그인
- mac
- 커스텀알림
- react-native
- react-firebaseui
- nvm
- 자바스크립트
- Next.js
- 구조분해할당
Archives
- Today
- Total
목록구구단 (1)
JadeCode
[백준] python 2739 구구단
https://www.acmicpc.net/problem/2739 2739번: 구구단 N을 입력받은 뒤, 구구단 N단을 출력하는 프로그램을 작성하시오. 출력 형식에 맞춰서 출력하면 된다. www.acmicpc.net n을 입력받은 뒤, 출력 형태에 맞추어 출력하기 import sys input = sys.stdin.readline t = int(input()) for i in range(1, 10): print(f'{t} * {i} = {t*i}') f-string 문자열 포매팅 방법 연습
개발/알고리즘
2022. 2. 25. 14:00