인프런 커뮤니티 질문&답변

sukim13062님의 프로필 이미지
sukim13062

작성한 질문수

프로그래밍 시작하기 : 파이썬 입문 (Inflearn Original)

Project(2-1) : 이거 완성했으면 파이썬 기초 문법 끝

비쥬얼 스튜디오에서는 되는데 명령 프롬포트에선 실행되지 않습니다

작성

·

50

0

프롬포트 

 

C:\>C:\infrun\qwer\python1.0_source\source_code\chapter10_011.py

what is your nameiys

hi iys time to play hangman man

start loading

Traceback (most recent call last):

File "C:\infrun\qwer\python1.0_source\source_code\chapter10_011.py", line 21, in <module>

with open('source_code/resource/word_list.csv','r') as f:

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

FileNotFoundError: [Errno 2] No such file or directory: 'source_code/resource/word_list.csv'

 

비쥬얼 스튜디오

import time import csv import random import winsound name = input('what is your name') print('hi',name,'time to play hangman man') print() time.sleep(1) print('start loading') print() time.sleep(0.5) words=[] with open('source_code/resource/word_list.csv','r') as f: reader = csv.reader(f) next(reader) for c in reader: words.append(c) random.shuffle(words) q = random.choice(words) words=q[0].strip()

답변 1

0

좋은사람님의 프로필 이미지
좋은사람
지식공유자

안녕하세요. sukim님

해당 경로에서 csv 파일을 찾지 못해 나오는 현상입니다.

csv파일을 실행파일과 같은 경로에 두시거나 vscode 실행 위치를 실행파일이 있는 경로에서

실행해주시면 됩니다.

감사합니다.

sukim13062님의 프로필 이미지
sukim13062

작성한 질문수

질문하기