Latest Awards
Complete 10 python programs which focus on loops.

morgan

Score over 100 points in total

vincebanter10

Complete any 5 python programs

vincebanter10

Complete 3 python list based tasks

vincebanter10

Complete 5 python list based tasks

vincebanter10

Complete 10 python list based tasks

dman12

Score over 1000 points in total

april-logan

Complete any pygame task

april-logan

Complete any 3 pygame tasks

april-logan

You have to complete 5 pygame tasks

april-logan

Score over 500 points in total

sam-edmund

Complete any pygame task

sam-edmund

Complete any 3 pygame tasks

sam-edmund

You have to complete 5 pygame tasks

sam-edmund

Complete any pygame task

12wrigleyf

Complete any 3 pygame tasks

12wrigleyf

You have to complete 5 pygame tasks

12wrigleyf

Score over 500 points in total

jhoughton12

Complete any 10 python prograns

jhoughton12

Complete 10 python programs which focus on loops.

jhoughton12

Python Score
tasks = 0
achivements = 0
freestyle = 0
Total = 0
Top 5 Scores
114gilo 3500
2joss-nolan-2 2530
3alexdawkins 2515
4byrnebrian 2080
512wattsl 1750
Click to view all scores
Who else completed this task?
No one has completed this task yet. Be the first!

Variables

Variables allow you to save a value for later use. This later use may be to display it or to perform further calculations. Whatever the reason variables form the backbone of most programs.

Some sample code to try –

x = 3
y = 8
z = x + y
print "x is", x
print "y is", y
print "x + y is ",z

The code sample should print 11. Open up Geany or try it in the interactive editor below.

Helpful links

http://www.sthurlow.com/python/lesson03/

http://anh.cs.luc.edu/python/hands-on/3.1/handsonHtml/variables.html

http://learnpythonthehardway.org/book/ex4.html

Test your skill!

x = 3
y = 8
z = x + y
??? =?????
print z

Task – Add 2 to z by altering the code above. The easiest way to do it is to replace the ???? with new values.

Task 1: Answer SelectShow

Output: (clear)


Leave a Reply

You must be logged in to post a comment.