일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 마라마라빔
- 소프트웨어공학
- minimum spanning tree
- programmers
- 함밥
- 장고
- 실습
- 데이터베이스
- 모각코
- 파이썬
- 코드트리
- 백트래킹
- django
- DP
- 동적계획법
- 그리디알고리즘
- MyPlaylist
- BFS
- DFS
- Planned
- codetree
- 백준
- Kruskal
- SQL
- 알고리즘
- 종합설계
- 최소스패닝트리
- 프로그래머스
- Bellman-Ford
- B대면노래방
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