赞
踩
一、变量的命名和使用
附 python关键字和内置函数
关键字:
+—————————————————————–+
False | class | finally | is | return | None | continue
for | lambda | try | True | def | nonlocal | while
and | del | global | not | with | as | elif | if | or | yield
assert | else | import | pass | break | except | in | raise
+—————————————————————–+
内置函数:
+—————————————————————–+
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()
+—————————————————————–+
二、字符串方法
常用函数,假设有字符串变量name = “ada lovelace”
name.title()以首字母大写的方式显示每个单词—》得到”Ada Lovelace“
name.upper()将字符串改为全部大写 —》得到”ADA LOVELACE“
name.lower()将字符串改为全部小写 —》得到”ada lovelace“
name.rstrip()只去掉字符串末尾的空格
name.lstrip()只去掉字符串开头的空格
name.strip()去掉字符串末尾和开头的空格
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。