Array

Creating Your First Application

Must Read

Admin
Admin
Just post!

After all this time, you might have started wondering whether you would get to write any code at all in this chapter. The first application won’t be very fancy, but it’ll be more than a simple Hello World kind of application. You can use any editor that outputs pure text in this section. Notepad will work just fine. Listing 1-1 shows the code you should type in your editor.

A simple first application that multiplies two numbers

def mult(a, b):
return a * b
print(‘5 * 10 =’),
print(mult(5, 10))

Just five lines, including the blank line between the function and the main code, are all you need for this example. Functions begin with the def keyword. You then give the function a name, mult in this case, followed by a list of arguments (if any) — a and b for this example.

The content of the function is indented with a tab. In this case, the function simply returns the value of multiplying a by b. Except for the indentation requirement, this could easily be a function written in any other language.

The main code section comes next. In this case, the code begins by printing 5 * 10 =. Notice that you enclose the string values in single quotes. The function call ends with an odd-looking comma. This comma tells the interpreter not to add a /n (newline) character after the print() call.

At this point, the code calls print() a second time, but it calls mult() instead of writing text directly. The output of mult() is an integer, which IronPython automatically converts to a string for you and then prints out. You’ll find that IronPython does a lot of work for you in the background — dynamically.

Save the code you’ve typed into Notepad as MyFirst.py. Make sure you choose All Files in the Save As Type field so that Notepad doesn’t add a .txt extension to the output. To execute this example, type IPY MyFirst.py at the command line and press Enter. Figure 1-10 shows the output from this quick example.

The output of the example is a simple equation.

- Advertisement -

Latest News

Elevate Your Bentley Experience: The Bespoke Elegance of Bentayga EWB by Mulliner

Bentley Motors redefines the essence of bespoke luxury with the introduction of the Bentayga EWB's groundbreaking two-tone customization option—a...
- Advertisement -

More Articles Like This

- Advertisement -