Looking to start learning Python?

Begin Here

Tag: Python

Python 101 - An Intro to IDLE

March 18, 2017 by Mike
Python comes with its own code editor: IDLE (Integreted Development and Learning Environment). There is some lore that the name for IDLE comes from Eric Idle, an actor in Monty Python. An IDE is an editor for programmers that provides color highlighting of key words in the language, auto-complete, an "experimental" debugger and lots of […]

Python 101: All About Dictionaries

March 15, 2017 by Mike
The Python programming language has several built-in types that it supports. One of my favorites is the dictionary. A dictionary is a mapping object maps hashable values to arbitrary objects (source). Other languages call dictionaries "hash tables". They are mutable objects that you can change whenever you want to, unlike tuples. A dictionary's keys must […]

How to Run Python Tests "Continuously" While Coding

March 14, 2017 by Mike
Last week I was doing some Test Driven Development training and overheard someone mention another programming language that had a test runner that you could set up to watch your project directory and run your tests when the files changed. I thought that was a neat idea. I also thought I could easily write my […]

PyDev of the Week: Luke Plant

March 13, 2017 by Mike
This week we welcome Luke Plant as our PyDev of the Week. Luke is one of the core developers of Django, a very popular Python web framework. Luke writes a blog with many articles about Django. If you'd like to see some of Luke's contributions, then you will want to wander over to his Github […]

Python - How to tell if a Function Has Been Called

March 10, 2017 by Mike
Last year I ran into a situation where I needed to know if a function had been called. Basically we were trying to prevent shutting down a Twisted event loop twice or starting two of them. Anyway, in my research I stumbled across a fun post on StackOverflow that showed a couple of ways to […]

Python 201 is Now an Online Course

March 8, 2017 by Mike
My second book, Python 201: Intermediate Python, was just released as an online course over at Educative. I also have Python 101 on there as well. Educative is a pretty new educational website. It's kind of like Code Academy except that they usually charge for access to all their courses. Note: This is NOT a […]
1 90 91 92 93 94 176
View More

End of content

No more pages to load

Copyright © 2024 Mouse Vs Python | Powered by Pythonlibrary