Wednesday, April 24, 2013

Program Online Without any Tools on Your Computer

If you've never programmed before and you want to get an idea of how the process works I suggest you go try the tools at : http://ideone.com/.

First you select which language you're going to program in from the list box that's on the left. Select Python.

Move your cursor to the right side and enter some code (programming instructions)  and hit the submit key.

The ideone website will execute your code and send you back the results. !!

I suggest the following little program:

for i in range(1,11):
    print i

The above code snippet will display the numbers 1 to 10 each on a line l

A screen shot of the output of ideone



No comments:

Post a Comment