«eof» 태그된 질문

5
“while (! feof (file))”이 왜 항상 잘못된 것입니까?
요즘 많은 게시물에서 이와 같은 파일을 읽으려는 사람들을 보았습니다. #include <stdio.h> #include <stdlib.h> int main(int argc, char **argv) { char *path = "stdin"; FILE *fp = argc > 1 ? fopen(path=argv[1], "r") : stdin; if( fp == NULL ) { perror(path); return EXIT_FAILURE; } while( !feof(fp) ) { /* THIS …
573 c  file  while-loop  eof  feof 


8
read.csv 경고 '따옴표 붙은 문자열 내의 EOF'는 파일을 완전히 읽을 수 없도록합니다.
나는이 CSV 파일 (24.1 MB) 나는 완전히 내 R 세션으로 읽을 수 있습니다. 스프레드 시트 프로그램에서 파일을 열면 112,544 행을 볼 수 있습니다. R로 읽을 때 read.csv56,952 행 과이 경고 만 얻습니다. cit <- read.csv("citations.CSV", row.names = NULL, comment.char = "", header = TRUE, stringsAsFactors = FALSE, colClasses= "character", encoding= …
125 r  csv  eof  read.table 


10
구문 분석 중 Python 예기치 않은 EOF
다음은 내 파이썬 코드입니다. 누군가가 나에게 무엇이 잘못되었는지 보여줄 수 있습니까? while 1: date=input("Example: March 21 | What is the date? ") if date=="June 21": sd="23.5° North Latitude" if date=="March 21" | date=="September 21": sd="0° Latitude" if date=="December 21": sd="23.5° South Latitude" if sd: print sd 그리고 다음과 같은 일이 …
82 python  eof  python-2.x 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.