PYTHON · Learn Python Programming in 90 minutes or Less! (Python, Learning Python, Python Programming, Python Tutorial, Python Programming for Beginners, Python for Dummies Book 1)

- Authors
- AZ Elite Publishing
- Publisher
- Python, Python Programming, Python Development, python 3
- ISBN
- 9781502393470
- Date
- 2014-07-14T00:00:00+00:00
- Size
- 0.40 MB
- Lang
- en
* LIMITED TIME 50% Off! (Regular Price $5.99)* * *
Python: Up and Running With Python. Easy To Learn Python Programming For Beginners
"Python has been an important part of Google since the beginning, and remains so as the system grows and evolves. Today dozens of Google engineers use Python, and we're looking for more people with skills in this language." - Peter Norvig, director of search at Google
Chapter 1: Jumping Into Python
The History of Python
The Benefits of Python
Portability
Library Support
Chapter 2: Getting Started
Installing Python
Installing an IDE (PyCharm)
Our First Example Program
Running a Program
Command-Line
Logs
Chapter 3: Building our First Program
Indentation
Variables
Numbers
Strings
Example Variable Project
Operators
Conditional Operators
If Statements
Elif Statements
Nested Statements
Decision Making Example Project
Loops
While Loops
For Loops
Loop Example Project
Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.
Often, programmers fall in love with Python because of the increased productivity it provides. Since there is no compilation step, the edit-test-debug cycle is incredibly fast. Debugging Python programs is easy: a bug or bad input will never cause a segmentation fault. Instead, when the interpreter discovers an error, it raises an exception. When the program doesn't catch the exception, the interpreter prints a stack trace. A source level debugger allows inspection of local and global variables, evaluation of arbitrary expressions, setting breakpoints, stepping through the code a line at a time, and so on. The debugger is written in Python itself, testifying to Python's introspective power. On the other hand, often the quickest way to debug a program is to add a few print statements to the source: the fast edit-test-debug cycle makes this simple approach very effective.
"I'm in the middle of my tour of different programming languages. After finishing up some books on JavaScript I decided to check out Python. This book gave me exactly what I needed for getting started with the language. My main concern was picking up on the syntax and what separates Python from other programming languages. It has definitely been easy to learn the fundamentals in this book!" Kyle, USA