My Python Network Programming Notes: Difference between revisions

From GotOpinion
Jump to navigation Jump to search
m added timeit
m added random
Line 1: Line 1:
== Resources ==
== Resources ==


Python [https://docs.python.org/3/library/timeit.html timeit] module, use it to measure execution time of small code snippets
Python [https://docs.python.org/3/library/random.html random] module implements pseudo-random number generators for various distributions.
 
Python [https://docs.python.org/3/library/timeit.html timeit] module used to measure execution time of small code snippets


=== Books ===
=== Books ===

Revision as of 20:13, 27 March 2019

Resources

Python random module implements pseudo-random number generators for various distributions.

Python timeit module used to measure execution time of small code snippets

Books

Foundations of Python Network Programming 3rd ed. Edition by Brandon Rhodes and associated scripts and examples on github

To Python programming