タグ付けされた質問 「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 IS WRONG */ /* Read and process data …
573 c  file  while-loop  eof  feof 


8
read.csv警告 '引用文字列内のEOF'はファイルの完全な読み取りを妨げます
私が持っているCSVファイル(24.1メガバイト)私は完全に私のRセッションに読み込むことができないということを。スプレッドシートプログラムでファイルを開くと、112,544行が表示されます。私がそれをRに読み込んだときread.csv、56,952行とこの警告しか得られません: cit <- read.csv("citations.CSV", row.names = NULL, comment.char = "", header = TRUE, stringsAsFactors = FALSE, colClasses= "character", encoding= "utf-8") Warning message: In scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, : EOF within quoted string 私はファイル全体をRに読み込むことができますreadLines: rl <- readLines(file("citations.CSV", encoding = "utf-8")) length(rl) [1] 112545 しかし、これを(を介してread.csv)テーブルとしてRに戻すことはできません。 write.table(rl, "rl.txt", …
125 r  csv  eof  read.table 


10
解析中のPythonの予期しないEOF
これが私のPythonコードです。誰かが私にそれの何が悪いのか見せてもらえますか? 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 そして、これが何が起こるかです: >>> Example: March 21 | What is the date? Traceback (most recent call …
82 python  eof  python-2.x 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.