Search

My Mini Project- Compressed Air Engine

Abstract:       The Air Driven Engine is an eco-friendly engine which operates with compressed air. An Air Driven Engine uses the expansion of compressed air to drive the pistons of an engine An Air Driven Engine is a

Continue Reading →

TicTacToe Game in python

def print_board(board): print "The board look like this: \n" for i in range(3): print " ", for j in range(3): if board[i*3+j] == 1: print 'X', elif board[i*3+j] == 0: print 'O', elif board[i*3+j] != -1: print board[i*3+j]-1, else: print

Continue Reading →