paint-brush
Python Fundamentals [The One Minute Version]by@sltrask
1,773 reads
1,773 reads

Python Fundamentals [The One Minute Version]

by Mr TraskNovember 1st, 2018
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

Python truly is the language of the moment. It is the world’s fastest-growing programming language — used by YouTube, Dropbox, Spotify, Netflix and even the CERN LHC; and since Michael Gove disapplied the ICT curriculum programs back in 2012, Python has become the de rigueur choice of Computing teachers in the UK and beyond. Take the statement:

Companies Mentioned

Mention Thumbnail
Mention Thumbnail
featured image - Python Fundamentals  [The One Minute Version]
Mr Trask HackerNoon profile picture

Python truly is the language of the moment. It is the world’s fastest-growing programming language — used by YouTube, Dropbox, Spotify, Netflix and even the CERN LHC; and since Michael Gove disapplied the ICT curriculum programs back in 2012, Python has become the de rigueur choice of Computing teachers in the UK and beyond. Take the statement:

For various reasons it is one of the fundamental laws of programming that the first program you write is one which says ‘Hello’ to the entire world. Job done here via something called the shell — which is an interactive window within an Integrated DeveLopment Environment called IDLE.*

You can see here that the initial message tells me which version of IDLE I am running (version 3.6.2), gives me a date and time of when it was released, and informs me that it is running on Windows 32, although it is in fact at 64-bit program. I can also see from the chevrons (>>>) that I am in the shell, because the shell is where I can test out single lines of code and have the code execute right in front of me. To the great amusement of my students, I refer to the shell as my shell. As is mi shell. As in Michelle. :)

*Fans of Monty Python will soon cotton on to the naming convention here.