Python for Advanced Level ICT
Pages
(Move to ...)
Home
A/L ICT Lecture Notes
▼
Tuesday, March 15, 2016
A/L ICT 2015 Python Code for Structured Question
›
Write a Python program to record the marks obtained by students at the term test. Each student has sat for the same three papers and each m...
Friday, September 30, 2011
Flow Charting Tools : Free and Open Source
›
The flowchart is a means of visually presenting the flow of data through an information processing systems, the operations performed within ...
3 comments:
Thursday, August 4, 2011
Step By Step Programing to Teach Python
›
Step By Step Programing to Learn Python Used to explain syntax elements typically starts with a programming example. This example is the...
2 comments:
Monday, July 25, 2011
Python Recursion
›
#!/usr/bin/python def factorial(n): space = '*' * (4 * n) print space, 'factorial', n if n == 0: p...
Python Data Types Code Example - පයිතන් දත්ත වර්ග
›
x = [] for i in range(0,10): x.append(i) print x print "______________________________________" y = x * 10 x = "Hello Wor...
1 comment:
Python dice roll code example
›
#dice roll function (6-sided by default) import random def roll(d=6): return random.randint(1, d) while 1 > 0 : a=raw...
1 comment:
Python Dictionaries and Lists Difference
›
#debugger example print "This function creates a list." def makelist(): a = [] # list for i in range(1, 20): ...
3 comments:
›
Home
View web version