If you have been reading previous blog posts, I have been using a monitoring
tool called Zenoss. Under the hood there is a lot of Python stuff.
So I decided to start learning Python. Python can run on Mac, Linux, Unix, and
Windows. Let me show you some basic on what you can do in python.
1234567891011
#!/usr/bin/python firstName="John"lastName="Costanzo"# Lets just print out one variableprintfirstName# Now lets complete my nameprintfirstName,lastName# Lets just print something random without a variableprint"The sun is warm. The grass is green"# Now I will print some variables followed by some textprintfirstName,lastName,"Is the owner of this blog."
For more information on Python you can visit this site.