《python编程快速上手》

Posted akmendo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《python编程快速上手》相关的知识,希望对你有一定的参考价值。

@>>> int(3.4)

3

@判断条件时:00.0和‘’都是False

@终止进程

 

sys.exit()

 

@

>>> m=[1,2,3]
>>> print(m.pop())
3
>>> print(m)
[1, 2]

@陷入无限循环时

 

ctrl+c

 

@

print(cats,dog,sep=,)#Seperate
cats,dog

@tryexcept中,try里面有多个的话,一旦有触发except的,就不会再继续try

@多重赋值

cat=[fat,black,loud]
size,color,disposition=cat

@sort()使用ASCII码排序,排序大写在小写前面

 

>>>spam=[a,Z,b,z]
>>>spam.sort(key=str.lower)#lower后面没有括号
>>>spam
[a, b, Z, z]

 

@字典中的get和setdefault

items={apple:3,cup:2}
print("i get {0} apples and {1} eggs".format(items.get(apple,0),items.get(egg,3)))
print(items)
print(---)
print("i get {} apples and {} eggs".format(items.setdefault(apple,0),items.setdefault(egg,3)))
print(items)

@迭代字符串数各字母数

 

>>> message=‘lalalalawoshimaibaodexiaohangjia‘

 

>>> count={}

 

>>> for character in message:

 

count.setdefault(character,0)

 

count[character]=count[character]+1

 

>>> print(count)

@漂亮打印

import pprint
>>> pprint.pprint(count)

 

以上是关于《python编程快速上手》的主要内容,如果未能解决你的问题,请参考以下文章

python编程快速上手之第10章实践项目参考答案

分享《Python编程快速上手:让繁琐工作自动化》高清中文版PDF+高清英文版PDF+源代码

分享《Python 游戏编程快速上手(第3版)》高清中文版PDF+高清英文版PDF+源代码

入门python:《Python编程快速上手让繁琐工作自动化》中英文PDF+代码

Python编程快速上手-让繁琐工作自动化 第三章 函数习题及其答案

Python编程快速上手_第 2 章 控制流