Just a Web Programmer Blog

Archive for the ‘Schoolwork’ Category

Python Programming Homework 1

Wednesday, June 20th, 2007 Posted in My Life, Programming, Schoolwork | No Comments »

อาจารย์ให้เมื่อวันที่ 19/6/50even.py# even.py## A function that used to test if a number is even or not## Written by Prem Sichanugrist (48050892)#def even(number) : return (number % 2 == 0)hypotenuse.py# hypotenuse.py## A function that will calculate a length ...