执行 f = open('a.txt', 'a+') 后,通过如下哪个语句可以往a.txt中写入HELLO?
A: f.write('HELLO')
B: f.cout('HELLO')
C: f.read('HELLO')
D: f.scanf('HELLO')
A: f.write('HELLO')
B: f.cout('HELLO')
C: f.read('HELLO')
D: f.scanf('HELLO')
举一反三
- 下列代码中能够正确实现追加写入的是( )。 A: with open("d:\\python\\data.txt",'w') as f: f.write('Hello!') B: with open("d:\\python\\data.txt",'a') as f: f.write('Hello!') C: with open("d:\\python\\data.txt",'r+') as f: f.write('Hello!') D: with open("d:\\python\\data.txt",'wb+') as f: f.write('Hello!')
- 有以下程序:#include <;stdio. h>;main(){ FILE * f;f= fopen( " file a. txt"," w");Frintf( f, " abc");fclose ( f);}若文本文件file a.txt中原有内容为:hello,则运行以上程序后,文件filea. txt中的内容为______。 A: Helloabc B: abclo C: abc D: abchello
- 使用GCC编译源文件hello.c生成可执行文件hello的命令是( )。 A: gcc -v hello.c -o hello B: gcc -w hello -f hello.c C: gcc -w hello -o hello.c D: gcc -v hello.c -f hello
- 有以下程序 f=open(‘file.txt’ , ’a+’) f.write(‘abc’) f.seek(0,0) s=f.read() print(s) f.close() 若文本文件file.txt中原有内容为“hello”,则运行以上程序后,输出为( )
- 以下哪条语句可以在屏幕上输出如图的“HELLO C#!”?[img=325x135]17de74145cc603b.jpg[/img] A: Console.Write("HELLO C B: !"); C: Console.Read("HELLO C D: !"); E: Console.WriteLine("HELLO C F: !"); G: Console.ReadLine("HELLO C H: !");