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 | 31 |
Tags
- port
- mssql
- ubuntu
- pandas
- MS-SQL
- PyQt5
- swift
- 유니티
- tensorflow
- PyQt
- MySQL
- javascript
- 다이어트
- 날짜
- 라즈베리파이
- IOS
- sqlite
- ASP
- 함수
- Excel
- node.js
- 맛집
- 리눅스
- python
- GIT
- Linux
- Unity
- flutter
- urllib
- PER
Archives
목록파일 (1)
아미(아름다운미소)
[python] 파일, 디렉터리 조작
[python] 파일, 디렉터리 조작 디렉터리, 파일, 확장자 분리 (get directory and file, extension) import os fullpath = '/home/aaa/bbb/ccc.txt' print(os.path.dirname(fullpath)) # '/home/aaa/bbb' print(os.path.basename(fullpath)) # 'ccc.txt' print(os.path.split(fullpath)) # ('/home/aaa/bbb', 'ccc.txt') print(os.path.splitext(fullpath)) # ('/home/aaa/bbb/ccc', '.txt') 파일 확인 (check file exists) print(os.path.exists('/home/..
랭귀지/python
2018. 1. 11. 13:00