Languages Features Creators CSV Resources Challenges Add Language
GitHub icon

Python

Python - Programming language

< >

Python is a programming language created in 1991 by Guido van Rossum.

#4on PLDB 32Years Old 2.8mUsers
342Books 52Papers 9mRepos

Try now: Riju · Replit

Python is a widely used high-level programming language for general-purpose programming, created by Guido van Rossum and first released in 1991. An interpreted language, Python has a design philosophy that emphasizes code readability (notably using whitespace indentation to delimit code blocks rather than curly brackets or keywords), and a syntax that allows programmers to express concepts in fewer lines of code than might be used in languages such as C++ or Java. It provides constructs that enable clear programming on both small and large scales. Read more on Wikipedia...


Example from Compiler Explorer:
def square(num): return num * num
Example from Riju:
print("Hello, world!")
Example from Linguist:
#!/usr/bin/env python2.4 print "Python"

Keywords in Python

and as assert break class continue def del elif else except False finally for from global if import in is lambda None nonlocal not or pass raise return True try while with yield

Language features

Feature Supported Token Example
Scientific Notation âś“
Binary Literals âś“
# 0[bB](?:_?[01])+
Floats âś“
# (\d(?:_?\d)*\.(?:\d(?:_?\d)*)?|(?:\d(?:_?\d)*)?\.\d(?:_?\d)*)([eE][+-]?\d(?:_?\d)*)?
Hexadecimals âś“
# 0[xX](?:_?[a-fA-F0-9])+
Octals âś“
# 0[oO](?:_?[0-7])+
Functions âś“
While Loops âś“
Case Sensitivity âś“
Print() Debugging âś“ print
Threads âś“
Line Comments âś“ #
# A comment
Dispose Blocks Pattern âś“
with resource_context_manager() as resource:
   # Perform actions with the resource.
# Perform other actions where the resource is guaranteed to be deallocated.
Zero-based numbering âś“
Strings âś“
"hello world"
Inheritance âś“
class SumComputer(object):
   def __init__(self, a, b):
       self.a = a
       self.b = b
   def transform(self, x):
       raise NotImplementedError
   def inputs(self):
       return range(self.a, self.b)
   def compute(self):
       return sum(self.transform(value) for value in self.inputs())
 class SquareSumComputer(SumComputer):
     def transform(self, x):
         return x * x
 class CubeSumComputer(SumComputer):
     def transform(self, x):
         return x * x * x
Semantic Indentation âś“
class Person (object):
  def __init__(self, name):
    self.name = name
Operator Overloading âś“
# Python Program illustrate how  
# to overload an binary + operator 
  
class A: 
    def __init__(self, a): 
        self.a = a 
  
    # adding two objects  
    def __add__(self, o): 
        return self.a + o.a  
ob1 = A(1) 
ob2 = A(2) 
ob3 = A("Geeks") 
ob4 = A("For") 
  
print(ob1 + ob2) 
print(ob3 + ob4)
Multiple Inheritance âś“
class Base1:
    pass
class Base2:
    pass
class MultiDerived(Base1, Base2):
    pass
# Or multilevel inheritance:
class Base:
    pass
class Derived1(Base):
    pass
class Derived2(Derived1):
    pass
Lists âś“
myList = [1, 2, 3, 4, 5]
Integers âś“
pldb = 80766866
Multiline Strings âś“
template = """This is the first line.
This is the second line.
This is the third line."""
Mixins âś“
# https://easyaspython.com/mixins-for-fun-and-profit-cb9962760556
class EssentialFunctioner(LoggerMixin, object):
Iterators âś“
https://www.w3schools.com/python/python_iterators.asp
Infix Notation âś“
seven = 3 + 4
File Imports âś“
import datetime
oTime = datetime.datetime.now()
from my_pkg import my_funcs
Assignment âś“ =
name = "John"
Directives âś“
from __future__ import feature
# coding=
Generators âś“
https://wiki.python.org/moin/Generators
Constructors âś“
MultiLine Comments âś“ '''
''' A comment.
'''
Comments âś“
# This is a comment
Conditionals âś“
if True:
 print("Hello world")
Classes âś“
class Person (object):
  def __init__(self, name):
    self.name = name
Booleans âś“ True False
Dynamic Properties âś“
class Person (object):
  def __init__(self, name):
   self.name = name

person = Person("John")
person.age = 50
Symbol Tables âś“
# https://eli.thegreenplace.net/2010/09/18/python-internals-symbol-tables-part-1
Shebang âś“
#!/usr/bin/env python
Bitwise Operators âś“
x << y
Ternary operators âś“
print(1 if 1 else 0)
Single Dispatch âś“
Duck Typing âś“
Disk Output âś“
with open('helloworld.txt', 'w') as filehandle:
 filehandle.write('Hello, world!\n')
Units of Measure X
Pointers X
Case Insensitive Identifiers X
Regular Expression Syntax Sugar X
Enums X
# Though there is an Enum class in stdlib https://peps.python.org/pep-0435/
Macros X
Variable Substitution Syntax X

Books about Python on goodreads

title author year reviews ratings rating
Python: Programming: Your Step By Step Guide To Easily Learn Python in 7 Days (Python for Beginners, Python Programming for Beginners, Learn Python, Python Language) iCode Academy 6 126 3.76
Programming Python Mark Lutz 1996 23 898 3.96
Natural Language Processing with Python Steven Bird 2009 34 389 4.14

Books about Python from ISBNdb

title authors year publisher
Black Hat Python: Python Programming for Hackers and Pentesters Seitz, Justin 2014 No Starch Press
Python Programming: An Introduction to Computer Science Zelle, John 2010 Franklin, Beedle & Associates
Programming the Raspberry Pi, Second Edition: Getting Started with Python Monk, Simon 2015 McGraw-Hill Education TAB
Maya Python for Games and Film: A Complete Reference for Maya Python and the Maya Python API Mechtley, Adam and Trowbridge, Ryan 2011 CRC Press
Introduction to Computation and Programming Using Python (MIT Press) Guttag, John V. 2013 The MIT Press
Python Programming for the Absolute Beginner, 3rd Edition Dawson, Michael 2010 Course Technology
Think Python Allen B. Downey 2012 O'Reilly Media
Gray Hat Python: Python Programming for Hackers and Reverse Engineers Seitz, Justin 2009 No Starch Press
Python Programming in Context Miller, Bradley N. and Ranum, David L. 2013 Jones & Bartlett Learning
Python Crash Course, 2nd Edition: A Hands-On, Project-Based Introduction to Programming Matthes, Eric 2019 No Starch Press
Python Essential Reference Beazley, David 2009 Addison-Wesley Professional
Learn Python the Hard Way: A Very Simple Introduction to the Terrifyingly Beautiful World of Computers and Code (Zed Shaw's Hard Way Series) Shaw, Zed 2013 Addison-Wesley Professional
The Practice of Computing Using Python (2nd Edition) Punch, William F. and Enbody, Richard 2012 Pearson
Mathematics and Python Programming Bautista, J.C. 2014 lulu.com
Head First Programming: A learner's guide to programming using the Python language Griffiths, David and Barry, Paul 2009 O'Reilly Media
Starting Out with Python Plus MyLab Programming with Pearson eText -- Access Card Package Gaddis, Tony 2017 Pearson
Python Programming for Beginners: An Introduction to the Python Computer Language and Computer Programming Cannon, Jason 2014 CreateSpace Independent Publishing Platform
A Primer on Scientific Programming with Python (Texts in Computational Science and Engineering, 6) Langtangen, Hans Petter 2016 Springer
Teach Your Kids to Code: A Parent-Friendly Guide to Python Programming Payne, Bryson 2015 No Starch Press
Starting Out with Python (2nd Edition) (Gaddis Series) Gaddis, Tony 2011 Pearson
Rapid GUI Programming with Python and Qt (Prentice Hall Open Source Software Development) Summerfield, Mark 2007 Prentice Hall
Explorations in Computing: An Introduction to Computer Science and Python Programming (Chapman & Hall/CRC Textbooks in Computing) Conery, John S. 2014 Chapman and Hall/CRC
Python Scripting for ArcGIS Pro Zandbergen, Paul A. 2020 Esri Press
Introduction To Computing And Programming In Python Guzdial, Mark J. and Ericson, Barbara 2009 Pearson
Core Python Programming Chun, Wesley J. 2006 Pearson P T R
Text Processing in Python Mertz, David and Mike Hendrickson 2003 Addison-Wesley Professional
Python GUI Programming Cookbook Meier, Burkhard A. 2015 Packt Publishing
Introduction to Python Programming for Business and Social Science Applications Kaefer, Frederick and Kaefer, Paul 2020 SAGE Publications, Inc
Python Network Programming Cookbook Sarker, Dr. M. O. Faruque 2014 Packt Publishing
Python Programming Fundamentals (Undergraduate Topics in Computer Science) Lee, Kent D. 2015 Springer
Starting Out with Python [RENTAL EDITION] 2020 Pearson
Practical Statistics for Data Scientists: 50+ Essential Concepts Using R and Python Bruce, Peter and Bruce, Andrew and Gedeck, Peter 2020 O'Reilly Media
Python Parallel Programming Cookbook Zaccone, Giancarlo 2015 Packt Publishing
Learn More Python 3 the Hard Way: The Next Step for New Python Programmers (Zed Shaw's Hard Way Series) Shaw, Zed 2017 Addison-Wesley Professional
Python in a Nutshell, Second Edition (In a Nutshell) Martelli, Alex 2006 O'Reilly Media
The Quick Python Book Ceder, Naomi 2018 Manning Publications
Python For Software Design 2009
Mastering Python: Master the art of writing beautiful and powerful Python by using all of the features that Python 3.5 offers Hattem, Rick van 2016 Packt Publishing
Beginning Python: Using Python 2.6 and Python 3.1 Payne 2010 Wrox
The Practice of Computing Using Python plus MyProgrammingLab with Pearson eText -- Access Card Package (2nd Edition) Punch, William F. and Enbody, Richard 2012 Pearson
Learning Geospatial Analysis with Python Lawhead, Joel 2013 Packt Publishing
Impractical Python Projects: Playful Programming Activities to Make You Smarter Vaughan, Lee 2018 No Starch Press
Mastering Machine Learning with Python in Six Steps: A Practical Implementation Guide to Predictive Data Analytics Using Python Swamynathan, Manohar 2017 Apress
Designing Machine Learning Systems with Python Julian, David 2016 Packt Publishing
Python Algorithms: Mastering Basic Algorithms in the Python Language (Expert's Voice in Open Source) Hetland, Magnus Lie 2010 Apress
Mastering Python Regular Expressions Lopez, Felix and Romero, Victor 2014 Packt Publishing
A collection of Data Science Interview Questions Solved in Python and Spark: Hands-on Big Data and Machine Learning (A Collection of Programming Interview Questions) (Volume 6) Gulli, Antonio 2015 CreateSpace Independent Publishing Platform
Beginning Game Development with Python and Pygame: From Novice to Professional (Expert's Voice) McGugan, Will 2007 Apress
Foundations of Python Network Programming: The comprehensive guide to building network applications with Python (Books for Professionals by Professionals) Goerzen, John and Bower, Tim and Rhodes, Brandon 2010 Apress
Mastering Python for Data Science Madhavan, Samir 2015 Packt Publishing
The Quick Python Book Harms Ph.D., Daryl D and McDonald, Kenneth 2000 Manning Publications
Programming Python Mark Lutz 1996 CreateSpace Independent Publishing Platform
Parallel Programming with Python Palach, Jan 2014 Packt Publishing
Python Programming for Raspberry Pi, Sams Teach Yourself in 24 Hours Blum, Richard and Bresnahan, Christine 2013 Sams Publishing
Functional Python Programming Lott, Steven 2015 Packt Publishing
Black Hat Python, 2nd Edition: Python Programming for Hackers and Pentesters Seitz, Justin and Arnold, Tim 2021 No Starch Press
Beginning Programming with Python For Dummies Mueller, John Paul 2018 For Dummies
Python for Software Design: How to Think Like a Computer Scientist Downey, Allen B. 2009 Cambridge University Press
Python Fundamentals Chun, Wesley J. 2008 Prentice Hall
Python for Software Design: How to Think Like a Computer Scientist Downey, Allen B. 2009 Cambridge University Press
A Primer on Scientific Programming with Python (Texts in Computational Science and Engineering) Langtangen, Hans Petter 2011 Springer
Python Data Analysis Idris, Ivan 2014 Packt Publishing
MyLab Programming with Pearson eText -- Access Card -- for Starting out with Python Gaddis, Tony 2020 Pearson
Learning Python Data Visualization Adams, Chad 2014 Packt Publishing
Python Programming for the Absolute Beginner Dawson, Michael 2003 Cengage Learning PTR
Beginning Ethical Hacking with Python Sinha, Sanjib 2016 Apress
Coding Projects in Python (Computer Coding for Kids) DK 2017 DK Children
Mastering Python Networking: Your one stop solution to using Python for network automation, DevOps, and SDN Chou, Eric 2017 Packt Publishing
Scientific Computing with Python 3 Fuhrer, Claus and Solem, Jan Erik and Verdier, Olivier 2016 Packt Publishing
Expert Python Programming: Best practices for designing, coding, and distributing your Python software Ziadé, Tarek 2008 Packt Publishing
A collection of Advanced Data Science and Machine Learning Interview Questions Solved in Python and Spark (II): Hands-on Big Data and Machine ... of Programming Interview Questions) Gulli, Dr Antonio 2015 CreateSpace Independent Publishing Platform
Programming with Python Padmanabhan, T R 2017 Springer
Bayesian Analysis with Python Martin, Osvaldo 2016 Packt Publishing
Python in a Nutshell: A Desktop Quick Reference Martelli, Alex and Ravenscroft, Anna Martelli and Holden, Steve 2017 O'Reilly Media
The Definitive Guide to Jython: Python for the Java Platform (Expert's Voice in Software Development) Juneau, Josh and Baker, Jim and Wierzbicki, Frank and Soto Muoz, Leo and Ng, Victor and Ng, Alex and Baker, Donna L. 2010 Apress
Programming Google App Engine with Python: Build and Run Scalable Python Apps on Google's Infrastructure Sanderson, Dan 2015 O'Reilly Media
Learning Scientific Programming with Python Hill, Christian 2016 Cambridge University Press
Learning Selenium Testing Tools with Python Gundecha, Unmesh 2014 Packt Publishing
Python For Everyone, Enhanced eText Cay S. Horstmann; Rance D. Necaise 11/2018 Wiley Global Education US
Python Projects for Beginners: A Ten-Week Bootcamp Approach to Python Programming Milliken, Connor P. 2019 Apress
Learning Python Application Development Sathaye, Ninad 2016 Packt Publishing
Matplotlib for Python Developers Tosi,Sandro 2009 Packt Publishing
Python/C Api Manual - Python 3: (Python Documentation Manual Part 4) Van Rossum, Guido and Drake, Fred L. 2009 CreateSpace Independent Publishing Platform
Starting Out with Python Tony Gaddis 20200325 Pearson Education (US)
Foundations of Python Network Programming Goerzen, John 2004 Apress
Python Programming Wikibooks Contributors 2011 Createspace Independent Publishing Platform
Digital Signal Processing (DSP) with Python Programming Charbit, Maurice 2017 Wiley-ISTE
Python in a Nutshell Alex Martelli 2003 O'Reilly Media
Myprogramminglab With Pearson Etext -- Access Card -- For Starting Out With Python (myprogramminglab (access Codes)) Tony Gaddis 2012
Python Programming Blueprints: Build nine projects by leveraging powerful frameworks such as Flask, Nameko, and Django Furtado, Daniel and Pennington, Marcus 2018 Packt Publishing
Core Python Programming, 2Ed [Paperback] [Jan 01, 2018] R. Nageswara Rao R. Nageswara Rao 2018 Wiley India
Python Tools for Visual Studio Sabia, Martino and Wang, Cathy 2014 Packt Publishing
Python: The Fundamentals Of Python Programming Jones, Paul 2016 CreateSpace Independent Publishing Platform
Rapid GUI Programming with Python and Qt: The Definitive Guide to PyQt Programming (paperback) Summerfield, Mark 2015 Pearson
Making Use of Python Gupta, Rashi 2002 Wiley
Programming With Python Altom, Tim and Chapman, Mitch 1999 Premier Pr
Internet of Things Programming Projects: Build modern IoT solutions with the Raspberry Pi 3 and Python Dow, Colin 2018 Packt Publishing
Python for Professionals: Hands-on Guide for Python Professionals (English Edition) Telles, Matt 2019 BPB Publications
Python Basics: A Self-Teaching Introduction Bhasin, H. 2018 Mercury Learning & Information
A Concise Introduction to Programming in Python (Chapman & Hall/CRC Textbooks in Computing) Johnson, Mark J. 2011 Chapman and Hall/CRC
Learning Predictive Analytics with Python: Gain practical insights into predictive modelling by implementing Predictive Analytics algorithms on public datasets with Python Kumar, Ashish 2016 Packt Publishing
Python Geospatial Development Westra, Erik 2010 Packt Publishing
Rapid Web Applications with TurboGears: Using Python to Create Ajax-Powered Sites Ramm, Mark 2011 Prentice Hall
Let Us Python: Python Is Future, Embrace It Fast (Second Edition) (English Edition) Kanetkar, Yashavant and Kanetkar, Aditya 2019 BPB Publications
MyLab Programming with Pearson eText -- Access Code Card -- for An Introduction to Programming Using Python Schneider, David 2014 Pearson
Python: Python Programming: Learn Python Programming In A Day - A Comprehensive Introduction To The Basics Of Python & Computer Programming Steve Gold 2016 Createspace Independent Publishing Platform
MyLab Programming with Pearson eText -- Access Card -- for Introduction to Computing and Programming in Python (My Programming Lab) Guzdial, Mark and Ericson, Barbara and Guijarro-Crouch, Mercedes 2015 Pearson
Natural Language Processing: Python and NLTK Hardeniya, Nitin and Perkins, Jacob and Chopra, Deepti and Joshi, Nisheeth and Mathur, Iti 2016 Packt Publishing
Python for Developers: Learn to Develop Efficient Programs using Python (English Edition) Raj, Mohit 2019 BPB Publications
Python 3 for Machine Learning Campesato, Oswald 2020 Mercury Learning & Information
Bite-Size Python: An Introduction to Python Programming Speight, April 2020 Wiley
Pro Android Python with SL4A: Writing Android Native Apps Using Python, Lua, and Beanshell Ferrill, Paul 2011 Apress
Python for Rookies Mount, Sarah and Shuttleworth, James and Winder, Russel 2008 Cengage Learning EMEA
The Definitive Guide to Masonite: Building Web Applications with Python Pitt, Christopher and Mancuso, Joe 2020 Apress
Deep Learning With Python Chao Pan 2016 Createspace Independent Publishing Platform
Introduction to Python for Science and Engineering (Series in Computational Physics) Pine, David J. 2018 Routledge
Python: Beginner’s Guide to Programming Code with Python (Python, Java, JavaScript, Code, Programming Language, Programming, Computer Programming) (Volume 1) Masterson, Charlie 2016 CreateSpace Independent Publishing Platform
Snake Charming - The Musical Python Iain Gray 20170921 Springer Nature
Tor: Accessing The Deep Web & Dark Web With Tor: How To Set Up Tor, Stay Anonymous Online, Avoid NSA Spying & Access The Deep Web & Dark Web (Tor, Tor ... Invisible, NSA Spying, Python Programming) Jones, Jack 2017 CreateSpace Independent Publishing Platform
Learn Python Quickly: A Complete Beginner’s Guide to Learning Python, Even If You’re New to Programming (Crash Course With Hands-On Project) Quickly, Code 2020 Drip Digital
Problem Solving with Python 3.6 Edition: A beginner's guide to Python & open-source programming tools Kazarinoff, Peter D. 2019 Independently published
MicroPython Cookbook: Over 110 practical recipes for programming embedded systems and microcontrollers with Python Alsabbagh, Marwan 2019 Packt Publishing
Python for Linguists Hammond, Michael 2020 Cambridge University Press
Mastering Python for Networking and Security: Leverage Python scripts and libraries to overcome networking and security issues Ortega, José Manuel 2018 Packt Publishing
MicroPython for the Internet of Things: A Beginner’s Guide to Programming with Python on Microcontrollers Bell, Charles 2017 Apress
Understanding Optics with Python (Multidisciplinary and Applied Optics) Lakshminarayanan, Vasudevan and Ghalila, Hassen and Ammar, Ahmed and Varadharajan, L. Srinivasa 2018 CRC Press
Learn Keras for Deep Neural Networks: A Fast-Track Approach to Modern Deep Learning with Python Moolayil, Jojo 2018 Apress
Python: Learn Python FAST! - The Ultimate Crash Course to Learning the Basics of the Python Programming Language In No Time Hutt, Ryan 2014 CreateSpace Independent Publishing Platform
Python Web Development with Django Forcier, Jeff and Paul Bissex and Wesley Chun 2008 Addison-Wesley Professional
Pro Deep Learning with TensorFlow: A Mathematical Approach to Advanced Artificial Intelligence in Python Pattanayak, Santanu 2017 Apress
Python Network Programming Cookbook - Second Edition: Practical solutions to overcome real-world networking challenges Kathiravelu, Pradeeban and Sarker, Dr. M. O. Faruque 2017 Packt Publishing
Writing Interpreters and Compilers for the Raspberry Pi Using Python Dos Reis, Anthony J. 2018 CreateSpace Independent Publishing Platform
Dynamical Systems with Applications using Python Lynch, Stephen 2018 Springer
Advanced Data Science and Analytics with Python (Chapman & Hall/CRC Data Mining and Knowledge Discovery Series) Rogel-Salazar, Jesus 2020 Chapman & Hall
Python for Probability, Statistics, and Machine Learning Unpingco, José 2016 Springer
Python for Everyone Horstmann, Cay S. and Necaise, Rance D. 2013 Wiley
50 Steps to Mastering Basic Python Programming: With 140 practice problems and available accompanying videos, software, and problem solutions Shaffer, Dr. Steven C. 2018 Independently published
Beginning Game Programming with Pygame Zero: Coding Interactive Games on Raspberry Pi Using Python Watkiss, Stewart 2020 Apress
Python for beginners: Step-By-Step Guide to Learning Python Programming Lutz, Larry 2018 CreateSpace Independent Publishing Platform
Python: The No B.s. Python Crash Course For Newbies - Learn Python Programming In 8 Hours! (programming Series) (volume 3) Steven Codey 2017 Createspace Independent Publishing Platform
Advanced Python 3 Programming Techniques Mark Summerfield 20090213 Pearson Technology Group
The Python Language Reference Manual Sheridan, Chris 2016 Lulu.com
Revel for Introduction to Python Programming and Data Structures -- Access Card Liang, Y. Daniel 2019 Pearson
Programming: Python Programming, JAVA Programming, HTML and CSS Programming for Beginners Academy, iCode 2017 Independently published
PYTHON & HACKING: The No-Nonsense Bundle: Learn Python Programming and Hacking Within 24 Hours! University, Cyberpunk 2017 CreateSpace Independent Publishing Platform
Learn TensorFlow 2.0: Implement Machine Learning and Deep Learning Models with Python Singh, Pramod and Manure, Avinash 2019 Apress
Problem Solving with Python 3.7 Edition: A beginner's guide to Python & open-source programming tools Kazarinoff, Peter D. 2019 Independently published
Data Structures and Algorithms in Python Publishing, DS 2019 Independently published
Tkinter GUI Programming by Example: Learn to create modern GUIs using Tkinter by building real-world projects in Python Love, David 2018 Packt Publishing
Machine Learning Concepts with Python and the Jupyter Notebook Environment: Using Tensorflow 2.0 Silaparasetty, Nikita 2020 Apress
Python: The Complete Python Quickstart Guide (For Beginner's) (Python, Python Programming, Python for Dummies, Python for Beginners, Python crash course) Style Academy, Life- 2016 CreateSpace Independent Publishing Platform
Data Science with Jupyter: Master Data Science skills with easy-to-follow Python examples Gupta, Prateek 2019 BPB Publications
Python Programming: A Step By Step Guide For Beginners Eddison, Leonard 2018 CreateSpace Independent Publishing Platform
Python in easy steps: Covers Python 3.7 McGrath, Mike 2018 In Easy Steps Limited
Python Programming: The Ultimate Crash Course for Beginners with all the Tools and Tricks to Learn Coding with Python (with Practical Examples) Hayes, Howard 2019 Independently published
Python Made Simple And Practical: A Step-by-step Guide To Learn Python Coding And Computer Science From Basic To Advanced Concepts. James L. Young 2017 Createspace Independent Publishing Platform
The Python Workbook: A Brief Introduction with Exercises and Solutions Stephenson, Ben 2015 Springer
Python for Bioinformatics (Chapman & Hall/CRC Mathematical and Computational Biology) Bassi, Sebastian 2016 Chapman and Hall/CRC
Python: An Ultimate Beginner's Guide to Python Programming Gabon, Gale 2016 CreateSpace Independent Publishing Platform
Python Crash Course Alexis Jordan 2018
Programming with Python T R Padmanabhan 20170113 Springer Nature
Mastering Deep Learning Fundamentals with Python: The Absolute Ultimate Guide for Beginners To Expert and Step By Step Guide to Understand Python Programming Concepts Wilson, Richard 2019 Independently published
Python Deep Learning Valentino Zocca and Gianmario Spacagna and Daniel Slater and Peter Roelants 2017-04-28 Packt Publishing
Python Penetration Testing Essentials Mohit 2015 Packt Publishing
Python Programming: An Easiest Beginner To Expert Guide To Learn Python Burn and Andrew Independently Published
Python Programming: A Beginner's Guide To Learn Python In 7 Days Ramsey Hamilton 2016 Createspace Independent Publishing Platform
Keras Deep Learning Cookbook: Over 30 recipes for implementing deep neural networks in Python Dua, Rajdeep and Ghotra, Manpreet Singh 2018 Packt Publishing
Python: 2 Books in 1: Beginner's Guide + Best Practices to Programming Code with Python (Python, Java, JavaScript, Code, Programming Language, Programming, Computer Programming) Masterson, Charlie 2017 CreateSpace Independent Publishing Platform
A Primer on Scientific Programming with Python (Texts in Computational Science and Engineering Book 6) Langtangen, Hans Petter 2009 Springer
Raspberry Pi 3: A Practical Beginner's Guide To Understanding The Full Potential Of Raspberry Pi 3 By Starting Your Own Projects Using Python Programming Sanders, Finn 2019 Independently published
The Hacker's Guide To Scaling Python Danjou, Julien 2017 Lulu.com
Python Data Visualization Cookbook - Second Edition Milovanovic, Igor and Foures, Dimitry and Vettigli, Giuseppe 2015 Packt Publishing
Python All-in-one For Dummies John Shovic and Alan Simpson 2019 John Wiley & Sons
A Primer on Scientific Programming with Python (Texts in Computational Science and Engineering Book 6) Langtangen, Hans Petter 2014 Springer
Learn Raspberry Pi Programming with Python Donat, Wolfram 2014 Apress
Python 3 Object-oriented Programming: Building robust and maintainable software with object oriented design patterns in Python Phillips, Dusty 2015 Packt Publishing
Python Programming & Machine Learning With Python: Best Starter Pack Illustrated Guide For Beginners & Intermediates: The Future Is Here! Sullivan, William 2018 CreateSpace Independent Publishing Platform
Learn To Code:: The Beginner's Guide To Computer Programming - Python Machine Learning, Python For Beginners, Coding For Beginners Dave Jones 2017 Createspace Independent Publishing Platform
Coding - Computer programming (beginners onwards): Everything you need to get started with programming using Python (Owners' Workshop Manual) Saunders, Mike 2017 Haynes Publishing UK
Python Data Persistence: With SQL and NOSQL Databases Lathkar, Malhar 2019 BPB Publications
PYTHON & HACKING BUNDLE: 3 BOOKS IN 1: THE BLUEPRINT: Everything You Need To Know For Python Programming and Hacking! Architects, CyberPunk 2018 BlackNES Guy Books
PYTHON FOR BEGINNERS: The Ultimate Step by Step Learning Guide for Beginners to Python Programming in the Best Optimal Way SANCHEZ, ENRIQUE 2019 Independently published
Python Programming: A Step-by-Step Guide For Absolute Beginners Brian Jenkins 2018 Independently published
Python for non-Pythonians: How to Win Over Programming Languages Grossetti, Francesco and Rubera, Gaia 2019 EGEA Spa - Bocconi University Press
Python Scripting for Computational Science (Texts in Computational Science and Engineering Book 3) Langtangen, Hans Petter 2007 Springer
Python programming quickly get started to make the tedious work automation(Chinese Edition) [ MEI ] Al Sweigart ZHU 2016 People's Posts and Telecommunications Press
Python Programming For Beginners In 2021: Learn Python In 5 Days With Step By Step Guidance, Hands-on Exercises And Solution (Fun Tutorial For Novice Programmers) (Easy Coding Crash Course) Tudor, James 2021 Millennium Publishing Ltd
Python Data Analytics: A step by step fast and easy guide for whom are interested learn python data analytics. With examples, tips and tricks, includind basics of Pandas, Numpy and Matlotlib programming languages project 2019 Independently published
Python Programming: Python Programming for Beginners, Python Programming for Intermediates Stewart, Sarah 2019 Platinum Press LLC
Natural Language Processing Recipes: Unlocking Text Data with Machine Learning and Deep Learning using Python Kulkarni, Akshay and Shivananda, Adarsha 2019 Apress
A Primer on Scientific Programming with Python (Texts in Computational Science and Engineering Book 6) Langtangen, Hans Petter 2016 Springer
Python Succinctly Jason Cannon 2017 Createspace Independent Publishing Platform
Learning Python Mark Lutz 20091002 O'Reilly Media, Inc.
Learning Python Mark Lutz and David Ascher 2003 O'Reilly Media, Incorporated
LEARN PYTHON PROGRAMMING: Write code from scratch in a clear & concise way, with a complete basic course. From beginners to intermediate, an hands-on project with examples, to follow step by step GRAY, WILLIAM 2019 Independently published
Programming Microcontrollers with Python: Experience the Power of Embedded Python Subero, Armstrong 2021 Apress
Python: Learn Python Fast - The Ultimate Crash Course To Learning The Basics Of The Python Programming Language In No Time (python, Python ... Coding Fast With Hands-on Project) (volume 7) Stephen Hoffman 2015 Createspace Independent Publishing Platform
Bayesian Analysis with Python Martin, Osvaldo 2016 Packt Publishing
Bioinformatics Programming Using Python Mitchell L Model 20091208 O'Reilly Media, Inc.
Python Artificial Intelligence Projects for Beginners: Get up and running with Artificial Intelligence using 8 smart and exciting AI applications Eckroth, Dr. Joshua 2018 Packt Publishing
Intermediate Python Programming: The Insider Guide To Intermediate Python Programming Concepts Richard Ozer 2017 Createspace Independent Publishing Platform
Python for Secret Agents Lott, Steven F. 2014 Packt Publishing
Starting Out with Python Tony Gaddis 20140423 Pearson Education (US)
Programming in Python 3. Detailed guidance. / Programmirovanie na Python 3. Podrobnoe rukovodstvo. Various authors 2021 Simvol-Pljus
Python Programming For Intermediates: Learn The Fundamentals Of Python In 7 Days Michael Knapp 2017 Independently Published
Foundations of Python Network Programming Rhodes, Brandon and Goerzen, John 2014 Apress
Python Programming With Oracle Database Ray Terrill 2009 Champion Writers, Inc.
Essential Python for the Physicist Giovanni Moruzzi 2020 Springer
Python: The Ultimate Beginners Guide to Learn and Understand Python Programming (Volume 1) Webber, Mr Zach 2018 CreateSpace Independent Publishing Platform
The Hitchhiker's Guide to Python Kenneth Reitz; Tanya Schlusser 20160830 O'Reilly Media, Inc.
Nonlinear Digital Filtering with Python Ronald K. Pearson; Moncef Gabbouj 20180903 Taylor & Francis
Python Algorithms: Mastering Basic Algorithms in the Python Language (Expert's Voice in Open Source) Hetland, Magnus Lie 2011 Apress
Expert Python Programming: Become a master in Python by learning coding best practices and advanced programming concepts in Python 3.7, 3rd Edition Jaworski, Michał and Ziadé, Tarek 2019 Packt Publishing
Pro Android Python with SL4A: Writing Android Native Apps Using Python, Lua, and Beanshell Ferrill, Paul 2011 Apress
Hands-On Bitcoin Programming with Python: Build powerful online payment centric applications with Python Garg, Harish 2018 Packt Publishing
Coding: This Book Includes: Python Coding And Programming + Linux For Beginners + Learn Python Programming” Clark, Michael and Learn, Michael 2019 Independently Published
Modern Python Cookbook: The latest in modern Python recipes for the busy modern programmer Lott, Steven F. 2016 Packt Publishing
Beginning Programming With Python For Dummies John Paul Mueller 2014 John Wiley & Sons
Raspberry Pi Cookbook for Python Programmers Cox, Tim 2014 Packt Publishing
Programming with Python for Social Scientists Brooker, Phillip 2020 SAGE Publications Ltd
Hands-On Web Scraping with Python Anish Chapagain 15-07-2019 Packt Publishing
Programming: 4 Manuscripts in 1 book: Python For Beginners, Python 3 Guide, Learn Java, Excel 2016 Needham, Timothy C. 2018 Independently published
Programming ArcGIS with Python Cookbook - Second Edition Pimpler, Eric 2015 Packt Publishing
Data Science Fundamentals for Python and MongoDB Paper, David 2018 Apress
Python Programming for Biology: Bioinformatics and Beyond Stevens, Tim J. 2015 Cambridge University Press
Digital Signal Processing (dsp) With Python Programming Maurice Charbit 2017 John Wiley & Sons
Python Coding: Step-by-step Beginners' Guide To Learning Python Programming Language With Hands-on Project. Exercises Included Zed Fast 2019 Independently Published
Beginning Python Games Development, Second Edition: With PyGame McGugan, Will and Kinsley, Harrison 2015 Apress
Python Programming: Getting started FAST With Learning of Python Programming Basics in No Time (Programming is Easy) (Volume 3) Gimson, Matthew 2015 CreateSpace Independent Publishing Platform
Foundations of Python Network Programming: The comprehensive guide to building network applications with Python (Books for Professionals by Professionals) Goerzen, John and Bower, Tim and Rhodes, Brandon 2011 Apress
Python Programming: A Step By Step Guide For Beginners Eddison, Leonard 2018 CreateSpace Independent Publishing Platform
Teach children to learn programming language Python version(Chinese Edition) Bryson Payne 2016 People Post Press
Learning Python: The Ultimate Guide to Learning How to Develop Applications for Beginners with Python Programming Language Using Numpy, Matplotlib, Scipy and Scikit-learn Hack, Samuel 2019 Independently published
Introduction to Computing and Programming in Python with MyProgrammingLab, Global Edition Guzdial, Mark J. and Ericson, Barbara 2017 Pearson
Data Structures and Algorithms with Python (Undergraduate Topics in Computer Science) Lee, Kent D. and Hubbard, Steve 2015 Springer
Sams Teach Yourself Python Programming For Raspberry Pi In 24 Hours Blum, Richard , 1962- (author.) 2016 Sams,
Python Social Media Analytics: Analyze and visualize data from Twitter, YouTube, GitHub, and more Chatterjee, Siddhartha and Krystyanczuk, Michal 2017 Packt Publishing
Making Music with Computers: Creative Programming in Python (Chapman & Hall/CRC Textbooks in Computing) Manaris, Bill and Brown, Andrew R. 2014 Chapman and Hall/CRC
Python for Remote Sensing Applications in Earth Science: A Practical Programming Guide (Special Publications) Esmaili, Rebekah B. 2021 American Geophysical Union
A Primer on Scientific Programming with Python (Texts in Computational Science and Engineering Book 6) Langtangen, Hans Petter 2011 Springer
Building Android Apps in Python Using Kivy with Android Studio: With Pyjnius, Plyer, and Buildozer Gad, Ahmed Fawzy Mohamed 2019 Apress
Statistics for Machine Learning: Techniques for exploring supervised, unsupervised, and reinforcement learning models with Python and R Dangeti, Pratap 2017 Packt Publishing
Introduction to Data Science: A Python Approach to Concepts, Techniques and Applications (Undergraduate Topics in Computer Science) Igual, Laura and Santi SeguĂ­ and Jordi VitriĂ  and Eloi Puertas and Petia Radeva and Oriol Pujol and Sergio Escalera and Francesc DantĂ­ and LluĂ­s Garrido 2017 Springer
Introduction To Computing And Programming In Python Plus Myprogramming Lab Without Pearson Etext -- Access Card Package (3rd Edition)
Python Programming: 2 Books In 1: Ultimate Beginner's Guide & 7 Days Crash Course, Learn Computer Programming, Machine Learning And Data Science Quickly With Step-by-step Exercises John Russel 2019 Independently Published
Programming for Computations - Python: A Gentle Introduction to Numerical Simulations with Python 3.6 (Texts in Computational Science and Engineering Book 15) Linge, Svein and Hans Petter Langtangen 2019 Springer
Python Programming Language Jayne, Berajah 2019-05-01T00:00:01Z QuickStudy Reference Guides
Programming for Computations - Python: A Gentle Introduction to Numerical Simulations with Python (Texts in Computational Science and Engineering Book 15) Linge, Svein and Langtangen, Hans Petter 2016 Springer
Python Programming for Beginners: The #1 Python Programming Crash Course for Beginners to Learn Python Coding Well & Fast (with Hands-On Exercises) Publishing, Codeone 2022 Independently published
Python for Kids: A Playful Introduction to Programming Briggs, Jason R. 2012 No Starch Press, Incorporated
Python Basics: A Practical Introduction to Python 3 Amos, David and Bader, Dan and Jablonski, Joanna and Heisler, Fletcher 2021 Real Python (realpython.com)
Python for Data Analysis: Data Wrangling with Pandas, NumPy, and IPython McKinney, Wes 2017 O'Reilly Media
Python Programming for Beginners: The Ultimate Guide for Beginners to Learn Python Programming: Crash Course on Python Programming for Beginners (Python Programming Books) Publishing, AMZ 2021 Independently published
Python Crash Course, 2nd Edition: A Hands-On, Project-Based Introduction to Programming Matthes, Eric 2019 No Starch Press
Python Pocket Reference: Python In Your Pocket (Pocket Reference (O'Reilly)) Lutz, Mark 2014 O'Reilly Media
40 Algorithms Every Programmer Should Know: Hone your problem-solving skills by learning different algorithms and their implementation in Python Ahmad, Imran 2020 Packt Publishing
Python Cookbook, Third Edition Beazley, David and Jones, Brian K. 2013 O'Reilly Media
Python for Beginners: 2 Books in 1: Python Programming for Beginners, Python Workbook ACADEMY, PROGRAMMING LANGUAGES 2020 Independently published
Python Standard Library: A Quickstudy Laminated Reference Guide Jayne, Berajah 2020 Quickstudy
Python 3 Object-Oriented Programming: Build robust and maintainable software with object-oriented design patterns in Python 3.8, 3rd Edition Phillips, Dusty 2018-10-30T00:00:01Z Packt Publishing
Python Scripting for ArcGIS Pro Zandbergen, Paul A. and Zandbergen, Paul 2020 Esri Press
Python Programming: An Introduction to Computer Science, 3rd Ed. John Zelle 2016 Franklin, Beedle & Associates
Black Hat Python, 2nd Edition: Python Programming for Hackers and Pentesters Seitz, Justin and Arnold, Tim 2021 No Starch Press
Python for Beginners: Learn Python Programming With No Coding Experience in 7 Days: The Easiest & Quickest Way to Learn Python Coding, Programming, Web-Programming. Be a Python Programmer Ozoemena, Santos 2021 Independently published
Effective Python: 90 Specific Ways to Write Better Python (Effective Software Development Series) Brett, Slatkin 2019 Addison-Wesley Professional
Learn Python 3 the Hard Way: A Very Simple Introduction to the Terrifyingly Beautiful World of Computers and Code (Zed Shaw's Hard Way Series) A., Shaw Zed 2017 Addison-Wesley Professional
Learn Python Programming: An in-depth introduction to the fundamentals of Python, 3rd Edition Romano, Fabrizio and Kruger, Heinrich 2021 Packt Publishing
Programming the Raspberry Pi, Third Edition: Getting Started with Python Monk, Simon 2021 McGraw-Hill Education TAB
Murach's Python Programming (2nd Edition) Joel Murach and Michael Urban 2021 Mike Murach & Associates
Python Programming for Beginners: A Kid's Guide to Coding Fundamentals Foster, Patricia 2020 Rockridge Press
40 Algorithms Every Programmer Should Know: Hone your problem-solving skills by learning different algorithms and their implementation in Python Ahmad, Imran 2020 Packt Publishing
Learn Coding Basics for Kids, Young Adults and People Who Are Young at Heart, With Python: Python Computer Programming Made Easy! Stanley, Jack C. and Gross, Erik D. and Academy, The Tech 2020 Independently published
Deep Learning with Python Chollet, Francois 2017 Manning
Python Crash Course: A Hands-On, Project-Based Introduction to Programming Matthes, Eric 2015 No Starch Press
Python for MBAs Griffel, Mattan and Guetta, Daniel 2021 Columbia Business School Publishing
Python Scripting for ArcGIS (Python Scripting (3)) Zandbergen, Paul A. 2015 Esri Press
Murach's Python Programming Michael Urban and Joel Murach 2016 Mike Murach & Associates
Learn Robotics Programming: Build and control autonomous robots using Raspberry Pi 3 and Python Staple, Danny 2018-11-29T00:00:01Z Packt Publishing
Computer Programming And Cyber Security for Beginners: This Book Includes: Python Machine Learning, SQL, Linux, Hacking with Kali Linux, Ethical Hacking. Coding and Cybersecurity Fundamentals Codings, Zach 2019 Independently published
Effective Python: 59 Specific Ways to Write Better Python (Effective Software Development Series) Slatkin, Brett 2015 Addison-Wesley Professional
Tiny Python Projects: 21 small fun projects for Python beginners designed to build programming skill, teach new algorithms and techniques, and introduce software testing Youens-Clark, Ken 2020 Manning Publications
Django 3 By Example: Build powerful and reliable Python web applications from scratch, 3rd Edition Melé, Antonio 2020 Packt Publishing
Introduction to Computing and Programming in Python Guzdial, Mark and Ericson, Barbara 2015 Pearson
PYTHON: Learn Coding Programs with Python Programming and Master Data Analysis & Analytics, Data Science and Machine Learning with the Complete Crash Course for Beginners - 5 Manuscripts in 1 Book Academy, TechExp 2021 Independently published
Programming in Python 3: A Complete Introduction to the Python Language Summerfield, Mark 2009 Addison-Wesley Professional
Programming the Raspberry Pi, Third Edition: Getting Started with Python Monk, Simon 2021 McGraw-Hill Education TAB
Python Workbook: Learn How to Quickly and Effectively Program with Exercises, Projects, and Solutions LANGUAGES ACADEMY, PROGRAMMING 2019 Independently published
Python from the Very Beginning: With 100 exercises and answers Whitington, John 2020 Coherent Press
Python for Beginners: An Introduction to Learn Python Programming with Tutorials and Hands-On Examples Metzler, Nathan 2017 Independently published
Learn to Code by Solving Problems: A Python Programming Primer Zingaro, Daniel 2021 No Starch Press
Hands-On Data Analysis with Pandas: A Python data science handbook for data collection, wrangling, analysis, and visualization, 2nd Edition Molin, Stefanie 2021 Packt Publishing
Interactive Dashboards and Data Apps with Plotly and Dash: Harness the power of a fully fledged frontend web framework in Python – no JavaScript required Dabbas, Elias 2021 Packt Publishing
Raspberry Pi Computer Vision Programming: Design and implement computer vision applications with Raspberry Pi, OpenCV, and Python 3, 2nd Edition Pajankar, Ashwin 2020-06-29T00:00:01Z Packt Publishing
Python programming for beginners Cannon, Jason 2020 Frank
Hands-on Python Programming for Beginners: Learn Practical Python Fast Publishing, AI 2021 AI Publishing LLC
Python Programming and Visualization for Scientists Alex J. DeCaria 2016 Sundog Publishing
Python: Deeper Insights into Machine Learning: Leverage benefits of machine learning techniques using Python Raschka, Sebastian and Julian, David and Hearty, John 2016 Packt Publishing
Programming the Raspberry Pi, Second Edition: Getting Started with Python Monk, Simon 2015 McGraw-Hill Education TAB
Practical Data Analysis Using Jupyter Notebook: Learn how to speak the language of data by extracting useful and actionable insights using Python Wintjen, Marc 2020 Packt Publishing
Think Bayes: Bayesian Statistics in Python Downey, Allen B. 2021 O'Reilly Media
Machine Learning in the Oil and Gas Industry: Including Geosciences, Reservoir Engineering, and Production Engineering with Python Pandey, Yogendra Narayan and Rastogi, Ayush and Kainkaryam, Sribharath and Bhattacharya, Srimoyee and Saputelli, Luigi 2020 Apress
Python For Dummies Maruch, Stef and Maruch, Aahz 2006 For Dummies
Mastering Object-oriented Python F. Lott, Steven 2014 Packt Publishing
Python Essential Reference (Developer's Library) Beazley, David 2009 Addison-Wesley Professional
Learn Python Programming: The no-nonsense, beginner's guide to programming, data science, and web development with Python 3.7, 2nd Edition Romano, Fabrizio 2018 Packt Publishing
A Student's Guide to Python for Physical Modeling: Second Edition Kinder, Jesse M. and Nelson, Philip 2021 Princeton University Press
Python Programming For Beginners: Learn The Basics Of Python Programming (Python Crash Course, Programming for Dummies) Tudor, James 2019 Independently published
Practical Programming: An Introduction to Computer Science Using Python 3 (Pragmatic Programmers) Gries, Paul and Campbell, Jennifer and Montojo, Jason 2013 Pragmatic Bookshelf, The
Practical Discrete Mathematics: Discover math principles that fuel algorithms for computer science and machine learning with Python White, Ryan T. and Ray, Archana Tikayat 2021 Packt Publishing
Programming the Raspberry Pi: Getting Started with Python Monk, Simon 2012 McGraw-Hill Education Tab
Data Science for Beginners: 4 books in 1 — Master the Basics of Python Programming and Learn The Art of Data Science with Real-World Applications to Artificial Intelligence and Machine Learning Park, Andrew 2021 Independently published
Python One-Liners: Write Concise, Eloquent Python Like a Professional Mayer, Christian 2020 No Starch Press
Begin to Code with Python Miles, Rob 2017 Microsoft Press
Python: 3 books in 1- Your complete guide to python programming with Python for Beginners, Python Data Analysis and Python Machine Learning Ellison, Brady 2022 Independently published
A Student's Guide to Python for Physical Modeling: Updated Edition Kinder, Jesse M. and Nelson, Philip 2018 Princeton University Press
PYTHON: Learn Coding Programs with Python Programming and Master Data Analysis & Analytics, Data Science and Machine Learning with the Complete Crash Course for Beginners - 5 Manuscripts in 1 Book Academy, TechExp 2021 Independently published
Python GUI Programming with Tkinter: Design and build functional and user-friendly GUI applications, 2nd Edition Moore, Alan D. 2021 Packt Publishing
Python for Kids: A Playful Introduction To Programming Briggs, Jason 2012 No Starch Press
Python GUI Programming with Tkinter: Develop responsive and powerful GUI applications with Tkinter Moore, Alan D. 2018-05-15T00:00:01Z Packt Publishing
Python Network Programming: Conquer all your networking challenges with the powerful Python language Ratan, Abhishek and Chou, Eric and Kathiravelu, Pradeeban and Sarker, Dr. M. O. Faruque 2019 Packt Publishing
Programming in Python 3: A Complete Introduction to the Python Language Summerfield, Mark 2009 Addison-Wesley Professional
Numerical Methods in Physics with Python Gezerlis, Alex 2020 Cambridge University Press
Python Data Cleaning Cookbook: Modern techniques and Python tools to detect and remove dirty data and extract key insights Walker, Michael 2020 Packt Publishing
Learn Python Programming: The no-nonsense, beginner's guide to programming, data science, and web development with Python 3.7, 2nd Edition Romano, Fabrizio 2018 Packt Publishing
Python Programming: for Engineers and Scientists Turk, Irfan 2017 CreateSpace Independent Publishing Platform
Advanced Python Programming: Build high performance, concurrent, and multi-threaded apps with Python using proven design patterns Lanaro, Dr. Gabriele and Nguyen, Quan and Kasampalis, Sakis 2019-02-28T00:00:01Z Packt Publishing
Mastering OpenCV 4 with Python: A practical guide covering topics from image processing, augmented reality to deep learning with OpenCV 4 and Python 3.7 Villán, Alberto Fernández 2019 Packt Publishing
Practical Programming: An Introduction to Computer Science Using Python 3.6 Gries, Paul and Campbell, Jennifer and Montojo, Jason 2017 Pragmatic Bookshelf
Hands-On Data Analysis with Pandas: A Python data science handbook for data collection, wrangling, analysis, and visualization, 2nd Edition Molin, Stefanie 2021 Packt Publishing
Python Programming: Using Problem Solving Approach Thareja, Reema 2019-10-01T00:00:01Z Oxford Univ Pr
Twisted Network Programming Essentials: Event-driven Network Programming with Python McKellar, Jessica and Fettig, Abe 2013 O'Reilly Media
Impractical Python Projects: Playful Programming Activities to Make You Smarter Vaughan, Lee 2018 No Starch Press
Python GUI Programming with PyQt: A Beginner’s Guide to Python 3 and GUI Application Development Metzler, Nathan 2019-12-24T00:00:01Z Independently published
Think Bayes: Bayesian Statistics in Python Allen B. Downey 2013 O'Reilly Media
Hands-On Financial Trading with Python: A practical guide to using Zipline and other Python libraries for backtesting trading strategies Pik, Jiri and Ghosh, Sourav 2021 Packt Publishing
Bioinformatics with Python Cookbook: Learn how to use modern Python bioinformatics libraries and applications to do cutting-edge research in computational biology, 2nd Edition Antao, Tiago 2018 Packt Publishing
Mathematical Logic through Python Gonczarowski, Yannai A. and Nisan, Noam 2022 Cambridge University Press
Python for Biologists: A complete programming course for beginners Jones, Dr Martin 2013-09-07T00:00:01Z CreateSpace Independent Publishing Platform
Mastering Python Design Patterns: A guide to creating smart, efficient, and reusable software, 2nd Edition Ayeva, Kamon and Kasampalis, Sakis 2018 Packt Publishing

Publications about Python from Semantic Scholar

title authors year citations influentialCitations
SciPy 1.0: fundamental algorithms for scientific computing in Python Pauli Virtanen and R. Gommers and T. Oliphant and Matt Haberland and Tyler Reddy and D. Cournapeau and Evgeni Burovski and Pearu Peterson and Warren Weckesser and Jonathan Bright and Stéfan J. van der Walt and M. Brett and Joshua Wilson and K. Millman and N. Mayorov and Andrew R. J. Nelson and E. Jones and Robert Kern and Eric Larson and C. J. Carey and Ilhan Polat and Yu Feng and Eric W. Moore and J. Vanderplas and D. Laxalde and Josef Perktold and R. Cimrman and I. Henriksen and E. Quintero and Charles R. Harris and A. Archibald and Antônio H. Ribeiro and Fabian Pedregosa and P. van Mulbregt and Aditya Alessandro Pietro Alex Andreas Andreas Anthony Ant Vijaykumar Bardelli Rothberg Hilboll Kloeckner Sco and A. Vijaykumar and Alessandro Pietro Bardelli and Alex Rothberg and A. Hilboll and Andre Kloeckner and A. Scopatz and Antony Lee and A. Rokem and C. N. Woods and Chad Fulton and Charles Masson and C. Häggström and Clark Fitzgerald and D. Nicholson and David R. Hagen and D. Pasechnik and E. Olivetti and Eric Martin and Eric Wieser and Fabrice Silva and F. Lenders and Florian Wilhelm and G. Young and Gavin A. Price and G. Ingold and Gregory E. Allen and Gregory R. Lee and H. Audren and I. Probst and J. Dietrich and J. Silterra and James T. Webber and J. Slavič and J. Nothman and J. Buchner and Johannes Kulick and Johannes L. Schönberger and J. V. de Miranda Cardoso and J. Reimer and J. Harrington and Juan Rodríguez and Juan Nunez-Iglesias and Justin Kuczynski and K. Tritz and M. Thoma and M. Newville and Matthias Kümmerer and Maximilian Bolingbroke and Michael Tartre and M. Pak and Nathaniel J. Smith and N. Nowaczyk and Nikolay Shebanov and O. Pavlyk and P. A. Brodtkorb and Perry Lee and R. McGibbon and Roman Feldbauer and Sam Lewis and S. Tygier and Scott Sievert and S. Vigna and Stefan Peterson and S. More and Tadeusz Pudlik and T. Oshima and T. Pingel and T. Robitaille and Thomas Spura and T. Jones and T. Cera and Tim Leslie and Tiziano Zito and Tom Krauss and U. Upadhyay and Y. Halchenko and Y. Vázquez-Baeza 2019 8661 421
scikit-image: image processing in Python S. Walt and Johannes L. Schönberger and Juan Nunez-Iglesias and François Boulogne and Joshua D. Warner and Neil Yager and E. Gouillart and Tony Yu 2014 2701 73
Probabilistic programming in Python using PyMC3 J. Salvatier and T. Wiecki and C. Fonnesbeck 2016 1322 145
The atomic simulation environment-a Python library for working with atoms. Ask Hjorth Larsen and Jens Jørgen Mortensen and J. Blomqvist and I. Castelli and R. Christensen and M. Dulak and J. Friis and M. Groves and B. Hammer and Cory Hargus and E. Hermes and P. C. Jennings and Peter Bjerre Jensen and J. Kermode and J. Kitchin and Esben Leonhard Kolsbjerg and J. Kubal and K. Kaasbjerg and S. Lysgaard and Jón Bergmann Maronsson and Tristan Maxson and T. Olsen and L. Pastewka and Andrew A. Peterson and C. Rostgaard and J. Schiøtz and O. Schütt and M. Strange and K. Thygesen and T. Vegge and L. Vilhelmsen and M. Walter and Z. Zeng and K. Jacobsen 2017 1291 28
Pyomo — Optimization Modeling in Python W. Hart and C. Laird and J. Watson and D. L. Woodruff 2012 573 46
Pingouin: statistics in Python Raphael Vallat 2018 362 55
Pymoo: Multi-Objective Optimization in Python Julian Blank and K. Deb 2020 236 20
The Python ARM Radar Toolkit (Py-ART), a Library for Working with Weather Radar Data in the Python Programming Language Jonathan J. Helmus and S. Collis 2016 181 14
Machine Learning Made Easy: A Review of Scikit-learn Package in Python Programming Language J. Hao and T. Ho 2019 82 6
On the performance of the Python programming language for serial and parallel scientific computations Xing Cai and H. Langtangen and H. Moe 2005 81 1
Pygrass: An Object Oriented Python Application Programming Interface (API) for Geographic Resources Analysis Support System (GRASS) Geographic Information System (GIS) P. Zambelli and Sören Gebbert and M. Ciolli 2013 48 3
DNA Features Viewer, a sequence annotations formatting and plotting library for Python Valentin Zulkower and S. Rosser 2020 45 1
User interfaces for computational science: A domain specific language for OOMMF embedded in Python M. Beg and R. Pepper and H. Fangohr 2016 39 2
Programming language Python for data processing Z. Dobesová 2011 28 1
Learning Scientific Programming with Python Christian Hill 2016 25 0
Python to learn programming A. Bogdanchikov and M. Zhaparov and R. Suliyev 2013 21 1
Python Programming Language for Power System Analysis Education and Research Thiago R. Fernandes and Leonardo R. Fernandes and T. R. Ricciardi and Luis F. Ugarte and M. D. de Almeida 2018 21 2
Converting 2D-Medical Image Files “DICOM” into 3D- Models, Based on Image Processing, and Analysing Their Results with Python Programming Rafeek Mamdouh and H. El-Bakry and A. Riad and Nashaat Elkhamisy 2020 18 0
Topoly: Python package to analyze topology of polymers P. Dabrowski-Tumanski and P. Rubach and W. Niemyska and B. Greń and J. I. Sulkowska 2020 17 0
ML2SQL - Compiling a Declarative Machine Learning Language to SQL and Python Maximilian E. SchĂĽle and Matthias Bungeroth and Dimitri Vorona and A. Kemper and Stephan GĂĽnnemann and Thomas Neumann 2019 15 0
Implementation of vehicle detection algorithm for self-driving car on toll road cipularang using Python language M. V. G. Aziz and H. Hindersah and A. S. Prihatmanto 2017 14 0
Boa Meets Python: A Boa Dataset of Data Science Software in Python Language Sumon Biswas and Md Johirul Islam and Yijia Huang and Hridesh Rajan 2019 13 1
Students' perceptions of python as a first programming language at wits I. Sanders and Sasha Langford 2008 11 0
Parallelizing PDE Solvers Using the Python Programming Language Xing Cai and H. Langtangen 2006 11 0
Simple Visual-Aided Automated Titration Using the Python Programming Language Song Wei Benjamin Tan and P. K. Naraharisetti and Siew Kian Chin and Lai Yeng Lee 2020 11 0
Research on the improvement of python language programming course teaching methods based on visualization Xiaoyan Kui and Weiguo Liu and Jiazhi Xia and Huakun Du 2017 10 0
It's Like Python But: Towards Supporting Transfer of Programming Language Knowledge Nischal Shrestha and Titus Barik and Chris Parnin 2018 10 0
Using the Python programming language for bioinformatics M. Sanner 2005 9 1
Which Programming Language Should Students Learn First? A Comparison of Java and Python Chieh-An Lo and Yu-Tzu Lin and Cheng-Chih Wu 2015 9 0
Python Programming for Biology: A beginners’ guide T. Stevens and W. Boucher 2015 8 0
Scalable Parallel Programming in Python with Parsl Y. Babuji and A. Woodard and Zhuozhao Li and D. Katz and Ben Clifford and Ian T Foster and M. Wilde and K. Chard 2019 8 0
Static Analyses in Python Programming Courses David Liu and A. Petersen 2019 8 0
Is Python an Appropriate Programming Language for Teaching Programming in Secondary Schools? Eva Mészárosová 2015 8 1
Analysis of Student Misconceptions using Python as an Introductory Programming Language Fionnuala Johnson and Stephen McQuistin and J. O'Donnell 2020 8 0
New implementation of OGC Web Processing Service in Python programming language. PyWPS-4 and issues we are facing with processing of large raster data using OGC WPS J. Cepicky and LuĂ­s Moreira de Sousa 2016 8 0
Computer programming with Python for industrial and systems engineers: Perspectives from an instructor and students Yong Wang and Kasey J. Hill and Erin C. Foley 2017 7 0
CharmPy: A Python Parallel Programming Model J. J. Galvez and K. Senthil and L. Kalé 2018 7 0
Python Programming for Biology: Bioinformatics and Beyond T. Stevens and W. Boucher 2015 7 0
PySy: a Python package for enhanced concurrent programming Todd Williamson and R. Olsson 2014 6 0
Development of a Programming Course for Students of a Teacher Training Higher Education Institution Using the Programming Language Python Mikhail S. Prokopyev and E. Vlasova and T. Tretyakova and M. A. Sorochinsky and Rimma Alekseyevna Solovyeva 2020 6 0
An Introduction to Python and Computer Programming Yue Zhang 2015 5 1
Python Programming Fundamentals Kent D. Lee 2010 5 0
Python as a First Programming Language for Biomedical Scientists B. Chapman and J. Irwin 2015 5 1
Python – A comprehensive yet free programming language for statisticians X. U. Shukla and Dinesh J. Parmar 2016 5 0
TEACHING ALGORITHMIZATION AND PROGRAMMING USING PYTHON LANGUAGE Lvov M. and K. V. 2014 4 0
Neural Network Programming in Python 2019 4 0
An Empirical Study for Common Language Features Used in Python Projects Yun Peng and Yu Zhang and Mingzhe Hu 2021 4 1
Python as Multi Paradigm Programming Language Nimit Thaker and Abhilash Shukla 2020 4 0
Board Games in the Computer Science Class to Improve Students’ Knowledge of the Python Programming Language D. Jordaan 2018 4 0
The Core Python Language I Christian Hill 2016 3 0
Application of python programming language in measurements P. Pejovic 2019 3 0
An Analysis on Python Programming Language Demand and Its Recent Trend in Bangladesh Aaquib Javed and Monika Zaman and Mohammad Monir Uddin and Tasnova Nusrat 2019 3 0
c.html · python.html · sql.html

View source

- Build the next great programming language · Search · Day 212 · About · Blog · Acknowledgements · Traffic · Traffic Today · GitHub · feedback@pldb.com