Category Archives: Python
Udacity – Programming Fundamentals with Python – PyPi – twilio
Udacity – Programming Fundamentals with Python – Install PyPi SetupTools
Udacity – Programming Fundamentals with Python – mini-project – Draw Shapes with turtle
Udacity – Programming Fundamentals with Python – turtle module – Draw a Circle out of Diamonds
Udacity – Programming Fundamentals with Python – turtle module – Draw a circle out of Squares
Udacity – Programming Fundamentals with Python – Not all functions are created equal: function vs method
A great video highlighting the difference between:
- (Procedural Programming) calling a function straight from a Python Library. e.g.
webbrowser.open()
. - (Object-oriented Programming) calling a method (of a Class object). e.g. instantiate a
turtle.Turtle()
object calledbrad
, and invokebrad.forward()
to apply the methodforward()
on the objectbrad
.