Python 3 crash course: Unlock Your Python 3 Potential
by vishal singh,VS Programmers (Introduction)
Publisher finelybook 出版社: CreateSpace Independent Publishing Platform (May 24, 2018)
Language 语言: English
Print Length 页数: 128 pages
ISBN-10: 1720305773
ISBN-13: 9781720305774
Book Description
By finelybook
Python 3 crash course designed for newbies
Python 3 crash course is designed for beginners who want to start learning programming from no prior experience to programming. Exercise are used throughout this book to get you thinking and writing code like a true programmer.
Starts with Introduction To Programming
It start with introduction to python programming from very basics questions like what is programming and programming language. This book on python for beginners is written in easy to understand simple English language. it covers latest python 3 programming.
Why Python 3 programming
Python 3 is one of the most in demand and easy to learn programming language .This makes a large number of universities to teach python as student’s first programming language.
As python is high level programming language it is easier to learn and read. Python programming language became popular because of it’s simple and easy to read syntax.
Python 3 is open source programming language and free to use.
Python 3 has large community and support that means any problem you encounter will already be solve by others.
What you will learn in this Python 3 programming book
About Python
Introduction to Programming
Installing Python
Installing python 3 on windows
Installing python 3 on mac
Installing python 3 on linux
Let’s get started
Doing maths with python shell
Getting started with python text editor
Using print function
Variables
What is variable
Redefining variables
Python variable naming
Variable naming conventions
Comments
Strings
Strings In Python
Making Strings In Python
What does multi-line string mean
Quotes Inside Quotes In The String
Playing with strings
Concatenating strings
Converting string into integers
Converting integer into string
Stripping Whitespace
Common Data Types in Python
1. Numeric data types
2. Python 3 strings
3.python booleans
Operators
1.Types Of Operators
Boolean logic
Checking the boolean value (True or False) for a given condition
Logical Operators
Conditional statements
if statements
f else statements
elif statements
If-elif-else chain
Using input function
Loops
While loop
For loop
Break and continue statements
Data Structures
Lists
Tuples
Dictionaries
Functions
Parameters
Arguments
Practice Problems