Python: A beginner’s guide to Learning the basics of Python Programming
by: James Patterson
Print Length 页数: 166 pages
Edition 版次: 1
Language 语言: English
Publication Date 出版日期: 2016-03-03
ISBN-10: B01CJAJD5Q
SPECIAL OFFER
Every programmer,programmer-wannabe,or person with just the slimmest brush with programming principles has heard of Python. It is a “dynamic” programming language,which has become one of the most popular of its kind,with Perl,PHP,and Ruby also contending for the roost. Just like any of these or other programminglanguages,Python is a unique and powerful language. Nowadays,it appears virtually anywhere—from scalable web servers that run uninterrupted ‘round the clock,to throw-away scripts that only see a few seconds of “daylight”. It can be used for both database and GUI programming,as well as both server-side and client-side programming. It can be used by first-time coders just stepping away from the basics,as well as by skilled developers in mission-critical settings. It is certainly one of the most versatile of its lot.
Python allows for multiple programming paradigms,such as object-oriented,functional,and imperative programming. There is also an automatic memory management and a substantial,comprehensive,standard library.
Python interpreters may be downloaded and installed on many operating systems,which makes the resulting codeexecutable for different platforms as well. Using third-party tools like Pyinstaller,the code can be repackaged into standalone and executable programs for some of the most popular operating systems. This allows one to distribute software based on the language to different environments—without having to install a Python interpreter.
For those looking for open-source,there is CPython—a reference implementation of Python in the FOSS environment. It has a community-based model of development,like its alternative implementations. CPython is being managed by the Python Software Foundation,a non-profit outfit.
Contents
CHAPTER 1: Python’s History
CHAPTER 2: Advantages and Disadvantages
CHAPTER 3: When To Use Python
CHAPTER 4: Installing Python
CHAPTER 5: Python Basics
CHAPTER 6: Python Versions
CHAPTER 7: Learning How to Count – Python Integers
CHAPTER 8: Python Strings
CHAPTER 9: Python Lists
CHAPTER 10: Tuples
CHAPTER 11: IF Statement
CHAPTER 12: While Statement
CHAPTER 13: For Statement
CHAPTER 14: Try Statement
CHAPTER 15: With Statement
CHAPTER 16: Other Statements
CHAPTER 17: Functions
CHAPTER 18: Classes
CHAPTER 19: Modules
CHAPTER 20: Python Idioms
CHAPTER 21: Performance Tips
CHAPTER 22: Implementations Galore