打开QQ阅读 上QQ阅读看本书,第一时间看更新 Advanced Python Programming Copyright © 2019 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publish...
Python libraries for building robust and responsive applications. You will learn about profilers and reactive programming, concurrency and parallelism, as well as tools for making your apps quick and efficient. You will discover how to write code for parallel architectures using TensorFlow and Theano,...
Advanced_Python_programming APPLICATION/PDF文件[194KB] 致青**青春上传194KB文件格式pdf Advanced_Python_programming (0)踩踩(0) 所需:1积分
An example in Python Multithreaded priority queue A connection between real-life and programmatic queues The queue module Queuing in concurrent programming Multithreaded priority queue Summary Questions Further reading Using the with Statement in Threads Technical requirements Context management Starting from ma...
Pure Python OptimizationsAs mentioned in the last chapter, one of the most effective ways of improving the performance of applications is through the use of better algorithms and data structures. The Python standard library provides a large variety of ready-to-use algorithms and data structures ...
Python Programming: Advanced (No VAT) is part of the Informa Tech Division of Informa PLC Informa PLC About Us Investor relations Talent This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick ...
python advanced programming ( II ) 面向对象编程 简称OOP,是一种程序设计思想。OOP把对象作为程序的基本单元,一个对象包含了数据和操作数据的函数。数据封装、继承和多态是面向对象的三大特点。 在Python中,所有数据类型都可以视为对象,当然也可以自定义对象。自定义的对象数据类型就是...
Advanced Python ProgrammingBeazley, David MDavid M. Beazley. Advanced python programming. OReilly Open Source Con- ference, 2000.
python advanced programming ( I ) 函数式编程 函数是Python内建支持的一种封装,通过把大段代码拆成函数,通过一层一层的函数调用,就可以把复杂任务分解成简单的任务,这种分解可以称之为面向过程的程序设计。函数就是面向过程的程序设计的基本单元。 函数式编程就是一种抽象程度很高的编程范式,纯函数式编程语言编写...