A.Write Line()方法在输出字符串的后面添加换行符
B.使用Write()输出字符串时,光标将会位于字符串的后边
C.使用Write()和Write Line()方法输出数值变量时,必须要先把数值变量转换成字符串
D.使用不带参数的Write Line()方法时,将不会产生任何输出
第1题:
以下对Write() 和WriteLine()方法的叙述中正确的是
A.Write()方法在输出字符串的后面添加换行符
B.使用Write()方法输出字符串时,光标将会位于字符串的后面
C.使用Write()方法和WriteLine()方法输出数值变量时,必须要先将数值转换成字符串
D.使用不带参数的WriteLine()方法时,将不会产生任何输出
第2题:
5、以下选项中不是 Python 对文件的写操作方法的是
A.writelines
B.write 和 seek
C.writetext
D.write
第3题:
36、以下选项中不是 Python 对文件的写操作方法的是
A.writelines
B.write 和 seek
C.writetext
D.write
第4题:
下面对 Write()和 WriteLine()方法的描述,哪些是正确的____
A.WriteLine()方法在输出字符串的后面添加换行符
B.使用 Write()输出字符串时,光标将会位于字符串的后面
C.使用 Write()和 WriteLine()方法输出数值变量时,必须要先把数值变量转换成字符串
D.使用不带参数的 WriteLine()方法时,将不会产生任何输出
第5题:
与下列语句组等效的语句组是: document.write ("123<br>"); document.write ("456");
A.for (document) { write ("123<br>"); write ("456"); }
B.with (document) { write ("123<br>"); write ("456"); }
C.foreach (document) { write ("123<br>"); write ("456"); }
D.while (document) { write ("123<br>"); write ("456"); }