일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SQL
- B대면노래방
- 함밥
- 동적계획법
- minimum spanning tree
- BFS
- 코드트리
- 최소스패닝트리
- DFS
- DP
- 파이썬
- django
- MyPlaylist
- 그리디알고리즘
- Bellman-Ford
- Kruskal
- programmers
- 백준
- 종합설계
- Planned
- 소프트웨어공학
- 프로그래머스
- 마라마라빔
- 알고리즘
- 장고
- 데이터베이스
- 실습
- 백트래킹
- codetree
- 모각코
Archives
- Today
- Total
목록print (1)
Leta Learns
print(*)
https://stackoverflow.com/questions/61562134/in-print-function-in-python * in print function in python text = 'PYTHON' for index in range(len(text)): print(*text[:index + 1]) The * in the print function is producing a space between the characters on sys.stdout. Can someone please tell me what i... stackoverflow.com 리스트 원소나 문자열 각각의 문자를 한 칸 씩 띄운 후(공백) 출력 ex. ans = [1, 2, 3] 인 경우 print(*ans) 는 1 2 ..
Python
2022. 1. 24. 13:04