"FileNotFoundError"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
3번째 줄: 3번째 줄:
==Python==
==Python==
[[category: Python]]
[[category: Python]]
<source lang='Python'>
<syntaxhighlight lang='Python'>
f = open('not_exist.txt')
f = open('not_exist.txt')
# FileNotFoundError: [Errno 2] No such file or directory: 'not_exist.txt'
# FileNotFoundError: [Errno 2] No such file or directory: 'not_exist.txt'
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[IOError]]
*[[IOError]]

2020년 11월 2일 (월) 02:31 기준 최신판


1 Python[ | ]

f = open('not_exist.txt')
# FileNotFoundError: [Errno 2] No such file or directory: 'not_exist.txt'

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}