时间:2022-04-22 点击: 次 来源:网络 作者:佚名 - 小 + 大
零基础学python从入门到实战21天零基础学python epub源码测试 下载地址 https://share.weiyun.com/S11bpehi 资料目录 小甲鱼零基础学python视频全套96集 刘金玉零基础python入门到精通教程100集全套VIP精选 跟老齐学Python从入门到精通 电子工业出版社 小孩学说话是一个模仿的过程,周围的人说什么,孩子就重复什么。如果你已经忘记自己当初是怎么学说话的了,那么就找个小孩子观察一下吧,最好是观察自己的孩子,如果没有,就要抓紧了。 我想用Python实现类似的功能。 在写这个功能前,要了解两个函数:raw_input(如果是使用Python3.x,请转换为input())和print。 这两个都是Python的内建函数(built-in function)。关于Python的内建函数,下面都列出来了,供参考。 abs()、divmod()、input()、open()、staticmethod()、all()、 enumerate()、int()、ord()、str()、any()、eval()、isinstance()、pow()、 sum()、basestring()、execfile()、issubclass()、print()、super()、bin()、 file()、iter()、property()、tuple()、bool()、filter()、len()、range()、 type()、bytearray()、float()、list()、raw_input()、unichr()、callable()、 format()、locals()、reduce()、unicode()、chr()、frozenset()、long()、 reload()、vars()、classmethod()、getattr()、map()、repr()、xrange()、 cmp()、globals()、max()、reversed()、zip()、compile()、hasattr()、 memoryview()、round()、import()、complex()、hash()、min()、set()、 apply()、delattr()、help()、next()、setattr()、buffer()、dict()、hex()、 object()、slice()、coerce()、dir()、id()、oct()、sorted()、intern()。 这些内建函数,怎么才能知道哪个函数怎么用,且是干什么用的呢? 曾记否?前面使用过的方法在这里再演示一遍,这种方法是学习Python的法宝。 >>> help(raw_input) 然后就出现: Help on built-in function raw_input in module __builtin__: raw_input(...) raw_input([prompt]) -> string Read a string from standard input. The trailing newline is stripped. If the user hits EOF (Unix: Ctl-D, Windows: Ctl-Z+Return), raise EOFError. On Unix, GNU readline is used if enabled. The prompt string, if given, is printed without a trailing newline before reading. 是不是已经清晰地看到了raw_input()的使用方法了? |
上一篇:零基础学python新手入门教程零基础学python电子版顺序网站下载
下一篇:没有了