December 2000
Intermediate to advanced
816 pages
16h 57m
English
Veterans to software development will no doubt be ready to take a look at the famous “Hello World!” program, typically the first program that a programmer experiences when exposed to a new language. There is no exception here.
>>> print 'Hello World!'
Hello World!
The print statement is used to display output to the screen. Those of you who are familiar with C are aware that the printf() function produces screen output. Many shell script languages use the echo command for program output.
CORE NOTE: Dumping variable contents in interactive interpreter
Usually when you want to see the contents of a variable, you use the print statement in your code. However, from within the interactive ...
Read now
Unlock full access