本章将覆盖所有在Python中使用的基本I/O功能。有关更多函数,请参考标准Python文档。
打印到屏幕上:
产生输出最简单的方法是使用print语句,可以通过用逗号分隔的零个或多个表达式。该函数将传递到一个字符串表达式,并将结果写到标准输出,如下所示:
#!/usr/bin/python
print "Python is really a great language,", "isn't it?";
这将产生结果输出在标准屏幕上,结果如下:
Python is really a gre
1.输入与输出
python中输入与输出函数为:print、input
help()
帮助的使用:help()
help(print)
print(value, ..., sep=' ', end='\\n', file=sys.stdout, flush=False)
Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like o
我就废话不多说了,大家还是直接看代码吧!
#! usr/bin/python3.5
# -*- coding:utf-8 -*-
a = input(请输入一个整数:)
#python中input函数输出的是一个字符串,而只有通过int进行强制转换
a = int(a)
b = input(请输入一个整数:)
b = int(b)
divmod()函数用法
def divmod(x, y): # known case of builtins.divmod
Return the tupl