Java中的字节输入出流和字符输入输出流 以下哪个流类属于面向字符的输入流( ) A BufferedWriter B FileInputStream C ObjectInputStream D InputStreamReader 解析:IO流(1)字节输入流 基类:InputStream FileInputStream.ByteArrayInputStream.PipedInputStream.BufferedInputStream.ObjectInputStrea…
代码开发环境:Eclipse 1.打印字符串: print "Hello world!" myString = "Hello world!" print myString 运行结果: Hello world! Hello world! 2.格式化字符串 print "%s is in the left of railway station %d" % ("huizhi", 2) 运行结果: huizhi is in the l…