강의

멘토링

커뮤니티

Inflearn Community Q&A

romantage2438165's profile image
romantage2438165

asked

Introduction to Python for Programming and Data Science

파일 읽기에서,,,

Written on

·

316

0

Chapter 12에서 파일 읽기 코드를 위와 같이 실행했는데 왜 계속 무한 루프를 돌고있는걸까요..? 43번째 문장이 찍히고 나서도 저 * 표시가 없어지지 않습니다..

bigdatapython

Answer 1

0

TeamLab님의 프로필 이미지
TeamLab
Instructor

if line.strip() == ""

 

코드 상단에 print문을 찍어보시면 이미 line 에 내용이 없어서 계속 continue가 되지 않을까 합니다.

romantage2438165's profile image
romantage2438165

asked

Ask a question