Python Crash Course, 2nd Edition: A Hands-On, Project-Based Introduction to Programming
by: Eric Matthes (0)
The best-selling Python book in the world, with over 1 million copies sold! Ā
A fast-paced, no-nonsense, updated guide to programming in Python.
If you've been thinking about learning how to code or picking up Python, this internationally bestselling guide to the most popular programming language is your quickest, easiest way to get started and go! Even if you have no experience whatsoever, Python Crash Course, 2nd Edition, will have you writing programs, solving problems, building computer games, and creating data visualizations in no time.
Youāll begin with basic concepts like variables, lists, classes, and loopsāwith the help of fun skill-strengthening exercises for every topicāthen move on to making interactive programs and best practices for testing your code. Later chapters put your new knowledge into play with three cool projects: a 2D Space Invaders-style arcade game, a set of responsive data visualizations youāll build with Python's handy libraries (Pygame, Matplotlib, Plotly, Django), and a customized web app you can deploy online.
Why wait any longer? Start your engine and code!
A fast-paced, no-nonsense, updated guide to programming in Python.
If you've been thinking about learning how to code or picking up Python, this internationally bestselling guide to the most popular programming language is your quickest, easiest way to get started and go! Even if you have no experience whatsoever, Python Crash Course, 2nd Edition, will have you writing programs, solving problems, building computer games, and creating data visualizations in no time.
Youāll begin with basic concepts like variables, lists, classes, and loopsāwith the help of fun skill-strengthening exercises for every topicāthen move on to making interactive programs and best practices for testing your code. Later chapters put your new knowledge into play with three cool projects: a 2D Space Invaders-style arcade game, a set of responsive data visualizations youāll build with Python's handy libraries (Pygame, Matplotlib, Plotly, Django), and a customized web app you can deploy online.
Why wait any longer? Start your engine and code!
The Quotes
The pop() method removes the last item in a list, but it lets you work with that item after removing it.
In Python, square brackets ([]) indicate a list, and individual elements in the list are separated by commas.
If you only know the value of the item you want to remove, you can use the remove() method.