fruit = ["Banana","Apple","Mango","Pineapple","Passionfruit","Figs","Appricots"]
for count1 in range(len(fruit)-1):
for count2 in range(len(fruit)-1):
if ( fruit[count2] > fruit[count2+1] ):
tmp = fruit[count2]
fruit[count2] = fruit[count2+1]
fruit[count2+1] = tmp
print fruit
Monday, October 12, 2009
Wednesday, September 9, 2009
Boa Constructor
Program Python Graphically with the GUI RAD Tools with an Awesome IDE:
http://boa-constructor.sourceforge.net/
Wednesday, May 20, 2009
Fast Python Computation Coding
As a parting bit of wisdom on how to create optimized python programs for very fast execution you should look into stackless python. My team at our game company is using this appoarch. I have laid out that we will use optimized C++ modules wrapped in stackless python code for very fast execution times with easy to use scripting interface for end users. This is for the Blender Game Engine, BGE for short.
Here is the Link to the Game Developer Magazine with the Article:http://www.gdmag.com/archive/feb09.htmHere is some stuff on Stackless Python
Programming: If you guys already know about this then very cool if you do not then it will probably be an interesting read. http://www.stackless.com/http://www.stackless.com/spcpaper.htmBenchmark of the
Stackless Python:http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/
Blender:
http://www.blender.org
Our Company BGE developments:
http://blenderartists.org/forum/showthread.php?t=152782
Here is the Link to the Game Developer Magazine with the Article:http://www.gdmag.com/archive/feb09.htmHere is some stuff on Stackless Python
Programming: If you guys already know about this then very cool if you do not then it will probably be an interesting read. http://www.stackless.com/http://www.stackless.com/spcpaper.htmBenchmark of the
Stackless Python:http://muharem.wordpress.com/2007/07/31/erlang-vs-stackless-python-a-first-benchmark/
Blender:
http://www.blender.org
Our Company BGE developments:
http://blenderartists.org/forum/showthread.php?t=152782
Saturday, May 2, 2009
Monday, April 6, 2009
Cheap USB Hard Drive
Cheap USB 400 GB Western Digial 2.5 Hard Drive Free Shipping:
http://www.newegg.com/Product/Product.aspx?Item=N82E16822136340
http://www.newegg.com/Product/Product.aspx?Item=N82E16822136340
Friday, March 20, 2009
Loading Python Scripts From A CD and Saving
If you load a Python Script from a CD from your book into your text editor, it is then impossible to simply click save button in the text editor to save over that script. The reason for this is the fact that you are trying to save to a read only CD/DVD and this is an impossible task.
Yes its true there are read write CDs/DVDs but once a CD/DVD is fixed so that it runs on every computer and OS then it is no longer Read Write this is even true for Read Write CDs/DVDs. Manufactures of books commercial software always have their CDs/DVDs fixed so that they can distribute them to work on as many computers as possible.
So rather you have to save to your hard drive, thumb drive, USB Hard Drive with the File->Save As.
Yes its true there are read write CDs/DVDs but once a CD/DVD is fixed so that it runs on every computer and OS then it is no longer Read Write this is even true for Read Write CDs/DVDs. Manufactures of books commercial software always have their CDs/DVDs fixed so that they can distribute them to work on as many computers as possible.
So rather you have to save to your hard drive, thumb drive, USB Hard Drive with the File->Save As.
Thursday, March 19, 2009
Python Programming In Windows
The Easy Way:
Go To Start->Run
now type cmd and press enter
now you are at the prompt.
now you need to change directories into your python installation folder
now in order to run your python program from the prompt if python program is in the same director with the python installation folder, if it is not then move it to this folder, now you will want to type:
python.exe yourprogramnamehere.py
The Hard Way: I don't feel like listening to the instructor and I want to do what I want to do.
Go To Start->Run
now type cmd and press enter
now you are at the prompt.
now comes the fun. Type out your full installation path for your python program and the full path to where your file resides everytime you want to debug your program which will be quite often until you get rid of all of your syntax errors and logic errors. This will add a good bit of time to your debugging process.
The entry at the command prompt will look something like this and will wrap around several lines at the prompt.
C:\Python26\python.exe C:\Documents And Settings\02402530235\My Documents\Python Programs\yourpythonprogramhere.py
Yes you can run your programs in Idle but you won't get the detailed error messages that you need in order to debug your program. Its best to use the command prompt instead. Now that is just for running the program not counting setting up JEdit.
Setting Up JEdit:
Go To Utilities->Global Options
Click On Gutter
Line Numbering Checked
Now you can click on Monospace 10 and change the font size larger than 10 so you can actually see the line numbers.
Click On Text Area
Now you can change the font size and font if you like by clicking on the button to the right of Text Font.
You must save your file as a .py before text highlighting will show up for your python code in JEdit.
Go To Start->Run
now type cmd and press enter
now you are at the prompt.
now you need to change directories into your python installation folder
now in order to run your python program from the prompt if python program is in the same director with the python installation folder, if it is not then move it to this folder, now you will want to type:
python.exe yourprogramnamehere.py
The Hard Way: I don't feel like listening to the instructor and I want to do what I want to do.
Go To Start->Run
now type cmd and press enter
now you are at the prompt.
now comes the fun. Type out your full installation path for your python program and the full path to where your file resides everytime you want to debug your program which will be quite often until you get rid of all of your syntax errors and logic errors. This will add a good bit of time to your debugging process.
The entry at the command prompt will look something like this and will wrap around several lines at the prompt.
C:\Python26\python.exe C:\Documents And Settings\02402530235\My Documents\Python Programs\yourpythonprogramhere.py
Yes you can run your programs in Idle but you won't get the detailed error messages that you need in order to debug your program. Its best to use the command prompt instead. Now that is just for running the program not counting setting up JEdit.
Setting Up JEdit:
Go To Utilities->Global Options
Click On Gutter
Line Numbering Checked
Now you can click on Monospace 10 and change the font size larger than 10 so you can actually see the line numbers.
Click On Text Area
Now you can change the font size and font if you like by clicking on the button to the right of Text Font.
You must save your file as a .py before text highlighting will show up for your python code in JEdit.
Python Programming Basics With Ubuntu Linux
In the terminal you can run your python programs:
Go To Applications->Accessories->Terminal
python yourprogramhere.py
Note you need to be in the same directory as your python program, otherwise you need to type:
python /fulldirectorypath/yourprogramhere.py
or
python ./remainingdirectorypath/yourprogramhere.py
if you only type python at the prompt then you enter into the python program where it expects you to code in python commands at that point and time. Don't do this instead code your python programs in the text editor and run them with the python command.
Tip you can cycle through your previously typed commands in Linux by hitting the up and down arrows on the keyboard at the prompt.
Go To Applications->Accessories->Text Editor
in the Text Editor go to View->Highlight Mode->Scripts->Python
in the Text Editor go to Edit->Preferences
in Preferences make sure the following is checked:
in the View Tab
Text Wrapping All Options Checked
Display Line Numbers Checked
Highlight Current Line Checked
Display Right Margin Checked and leave it at 80
Highlight Matching Bracket Checked
in the Editor
Tab Width leave it at 8
Insert Spaces Instead of Tabs DO NOT CHECK!!!! This will keep your python programs from running correctly do to the fact that it relies on tabs for the begin and ending parts of code blocks such as functions, condition statements, etc.
Enable Automatic Indentation Checked.
File Saving Check All
in the Font & Color Tab
Use The System Fixed Width Font Do Not Check.
Now you can select a larger font which will make it easy to read your code and debug faster.
Now you are ready to code your program in Python in the text editor and save your file with the extension .py
After you save your file test the program in the terminal with your python command as explained up above. If you make a syntax error you will get detailed messages of what the problem is and what line the error is on. The error messages are better in the terminal than they are in Idle.
Go To Applications->Accessories->Terminal
python yourprogramhere.py
Note you need to be in the same directory as your python program, otherwise you need to type:
python /fulldirectorypath/yourprogramhere.py
or
python ./remainingdirectorypath/yourprogramhere.py
if you only type python at the prompt then you enter into the python program where it expects you to code in python commands at that point and time. Don't do this instead code your python programs in the text editor and run them with the python command.
Tip you can cycle through your previously typed commands in Linux by hitting the up and down arrows on the keyboard at the prompt.
Go To Applications->Accessories->Text Editor
in the Text Editor go to View->Highlight Mode->Scripts->Python
in the Text Editor go to Edit->Preferences
in Preferences make sure the following is checked:
in the View Tab
Text Wrapping All Options Checked
Display Line Numbers Checked
Highlight Current Line Checked
Display Right Margin Checked and leave it at 80
Highlight Matching Bracket Checked
in the Editor
Tab Width leave it at 8
Insert Spaces Instead of Tabs DO NOT CHECK!!!! This will keep your python programs from running correctly do to the fact that it relies on tabs for the begin and ending parts of code blocks such as functions, condition statements, etc.
Enable Automatic Indentation Checked.
File Saving Check All
in the Font & Color Tab
Use The System Fixed Width Font Do Not Check.
Now you can select a larger font which will make it easy to read your code and debug faster.
Now you are ready to code your program in Python in the text editor and save your file with the extension .py
After you save your file test the program in the terminal with your python command as explained up above. If you make a syntax error you will get detailed messages of what the problem is and what line the error is on. The error messages are better in the terminal than they are in Idle.
Monday, March 2, 2009
Wednesday, February 18, 2009
GUI Tic Tac Toe
Extra Credit:
Checkout chapter 10 in Python Programming for the Absolute Beginner.

# GUI Tic Tac Toe
from Tkinter import *
import sys
X = "X"
O = "O"
EMPTY = ""
TIE = "TIE"
NUM_SQUARES = 9
# YOUR TIC TAC TOE CODE GOES HERE
board = new_board()
class Application(Frame):
# GUI for the Main Window for Tic Tac Toe Game
def __init__(self,master): # Constructor Class Definition
Frame.__init__(self,master)
self.grid()
self.player1=X
self.player2=O
self.turn=X
self.CreateWidgets()
# Button Click Events
def BtnTopLeftClick(self):
legal = legal_moves(board)
move = 0
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnTopLeft["text"] = "X"
else:
board[move] = self.player2
self.BtnTopLeft["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnTopMidClick(self):
legal = legal_moves(board)
move = 1
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnTopMid["text"] = "X"
else:
board[move] = self.player2
self.BtnTopMid["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnTopRightClick(self):
legal = legal_moves(board)
move = 2
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnTopRight["text"] = "X"
else:
board[move] = self.player2
self.BtnTopRight["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnMidLeftClick(self):
legal = legal_moves(board)
move = 3
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnMidLeft["text"] = "X"
else:
board[move] = self.player2
self.BtnMidLeft["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnMidMidClick(self):
legal = legal_moves(board)
move = 4
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnMidMid["text"] = "X"
else:
board[move] = self.player2
self.BtnMidMid["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnMidRightClick(self):
legal = legal_moves(board)
move = 5
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnMidRight["text"] = "X"
else:
board[move] = self.player2
self.BtnMidRight["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnBotLeftClick(self):
legal = legal_moves(board)
move = 6
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnBotLeft["text"] = "X"
else:
board[move] = self.player2
self.BtnBotLeft["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnBotMidClick(self):
legal = legal_moves(board)
move = 7
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnBotMid["text"] = "X"
else:
board[move] = self.player2
self.BtnBotMid["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnBotRightClick(self):
legal = legal_moves(board)
move = 8
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnBotRight["text"] = "X"
else:
board[move] = self.player2
self.BtnBotRight["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def CreateWidgets(self):
# Tic Tac Toe Buttons
self.BtnTopLeft = Button(self)
self.BtnTopLeft["text"] = " "
self.BtnTopLeft.grid(row=0,column=0,columnspan=1,sticky=W)
self.BtnTopLeft["command"]=self.BtnTopLeftClick
self.BtnTopMid = Button(self)
self.BtnTopMid["text"] = " "
self.BtnTopMid.grid(row=0,column=1,columnspan=1,sticky=W)
self.BtnTopMid["command"]=self.BtnTopMidClick
self.BtnTopRight = Button(self)
self.BtnTopRight["text"] = " "
self.BtnTopRight.grid(row=0,column=2,columnspan=1,sticky=W)
self.BtnTopRight["command"]=self.BtnTopRightClick
self.BtnMidLeft = Button(self)
self.BtnMidLeft["text"] = " "
self.BtnMidLeft.grid(row=1,column=0,columnspan=1,sticky=W)
self.BtnMidLeft["command"]=self.BtnMidLeftClick
self.BtnMidMid = Button(self)
self.BtnMidMid["text"] = " "
self.BtnMidMid.grid(row=1,column=1,columnspan=1,sticky=W)
self.BtnMidMid["command"]=self.BtnMidMidClick
self.BtnMidRight = Button(self)
self.BtnMidRight["text"] = " "
self.BtnMidRight.grid(row=1,column=2,columnspan=1,sticky=W)
self.BtnMidRight["command"]=self.BtnMidRightClick
self.BtnBotLeft = Button(self)
self.BtnBotLeft["text"] = " "
self.BtnBotLeft.grid(row=2,column=0,columnspan=1,sticky=W)
self.BtnBotLeft["command"]=self.BtnBotLeftClick
self.BtnBotMid = Button(self)
self.BtnBotMid["text"] = " "
self.BtnBotMid.grid(row=2,column=1,columnspan=1,sticky=W)
self.BtnBotMid["command"]=self.BtnBotMidClick
self.BtnBotRight = Button(self)
self.BtnBotRight["text"] = " "
self.BtnBotRight.grid(row=2,column=2,columnspan=1,sticky=W)
self.BtnBotRight["command"]=self.BtnBotRightClick
# main
def main():
player1Name=""
player2Name=""
player1Score=0
player2Score=0
namesScores=[]
player1Name,player2Name,player1Score,player2Score,namesScores=readFileNamesScores(player1Name,player2Name,player1Score,player2Score)
root= Tk()
root.title("Tic Tac Toe")
root.geometry("200x100")
app = Application(root)
root.mainloop()
main()
Checkout chapter 10 in Python Programming for the Absolute Beginner.
# GUI Tic Tac Toe
from Tkinter import *
import sys
X = "X"
O = "O"
EMPTY = ""
TIE = "TIE"
NUM_SQUARES = 9
# YOUR TIC TAC TOE CODE GOES HERE
board = new_board()
class Application(Frame):
# GUI for the Main Window for Tic Tac Toe Game
def __init__(self,master): # Constructor Class Definition
Frame.__init__(self,master)
self.grid()
self.player1=X
self.player2=O
self.turn=X
self.CreateWidgets()
# Button Click Events
def BtnTopLeftClick(self):
legal = legal_moves(board)
move = 0
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnTopLeft["text"] = "X"
else:
board[move] = self.player2
self.BtnTopLeft["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnTopMidClick(self):
legal = legal_moves(board)
move = 1
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnTopMid["text"] = "X"
else:
board[move] = self.player2
self.BtnTopMid["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnTopRightClick(self):
legal = legal_moves(board)
move = 2
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnTopRight["text"] = "X"
else:
board[move] = self.player2
self.BtnTopRight["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnMidLeftClick(self):
legal = legal_moves(board)
move = 3
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnMidLeft["text"] = "X"
else:
board[move] = self.player2
self.BtnMidLeft["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnMidMidClick(self):
legal = legal_moves(board)
move = 4
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnMidMid["text"] = "X"
else:
board[move] = self.player2
self.BtnMidMid["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnMidRightClick(self):
legal = legal_moves(board)
move = 5
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnMidRight["text"] = "X"
else:
board[move] = self.player2
self.BtnMidRight["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnBotLeftClick(self):
legal = legal_moves(board)
move = 6
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnBotLeft["text"] = "X"
else:
board[move] = self.player2
self.BtnBotLeft["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnBotMidClick(self):
legal = legal_moves(board)
move = 7
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnBotMid["text"] = "X"
else:
board[move] = self.player2
self.BtnBotMid["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def BtnBotRightClick(self):
legal = legal_moves(board)
move = 8
if move not in legal:
print "\nThat square is already occupied. Please Choose another one.\n"
else:
if self.turn == self.player1:
board[move] = self.player1
self.BtnBotRight["text"] = "X"
else:
board[move] = self.player2
self.BtnBotRight["text"] = "O"
self.turn = next_turn(self.turn)
if winner(board):
the_winner = winner(board)
congrat_winner(the_winner,self.player2,self.player1,player1Name,player2Name,player1Score,player2Score,namesScores)
def CreateWidgets(self):
# Tic Tac Toe Buttons
self.BtnTopLeft = Button(self)
self.BtnTopLeft["text"] = " "
self.BtnTopLeft.grid(row=0,column=0,columnspan=1,sticky=W)
self.BtnTopLeft["command"]=self.BtnTopLeftClick
self.BtnTopMid = Button(self)
self.BtnTopMid["text"] = " "
self.BtnTopMid.grid(row=0,column=1,columnspan=1,sticky=W)
self.BtnTopMid["command"]=self.BtnTopMidClick
self.BtnTopRight = Button(self)
self.BtnTopRight["text"] = " "
self.BtnTopRight.grid(row=0,column=2,columnspan=1,sticky=W)
self.BtnTopRight["command"]=self.BtnTopRightClick
self.BtnMidLeft = Button(self)
self.BtnMidLeft["text"] = " "
self.BtnMidLeft.grid(row=1,column=0,columnspan=1,sticky=W)
self.BtnMidLeft["command"]=self.BtnMidLeftClick
self.BtnMidMid = Button(self)
self.BtnMidMid["text"] = " "
self.BtnMidMid.grid(row=1,column=1,columnspan=1,sticky=W)
self.BtnMidMid["command"]=self.BtnMidMidClick
self.BtnMidRight = Button(self)
self.BtnMidRight["text"] = " "
self.BtnMidRight.grid(row=1,column=2,columnspan=1,sticky=W)
self.BtnMidRight["command"]=self.BtnMidRightClick
self.BtnBotLeft = Button(self)
self.BtnBotLeft["text"] = " "
self.BtnBotLeft.grid(row=2,column=0,columnspan=1,sticky=W)
self.BtnBotLeft["command"]=self.BtnBotLeftClick
self.BtnBotMid = Button(self)
self.BtnBotMid["text"] = " "
self.BtnBotMid.grid(row=2,column=1,columnspan=1,sticky=W)
self.BtnBotMid["command"]=self.BtnBotMidClick
self.BtnBotRight = Button(self)
self.BtnBotRight["text"] = " "
self.BtnBotRight.grid(row=2,column=2,columnspan=1,sticky=W)
self.BtnBotRight["command"]=self.BtnBotRightClick
# main
def main():
player1Name=""
player2Name=""
player1Score=0
player2Score=0
namesScores=[]
player1Name,player2Name,player1Score,player2Score,namesScores=readFileNamesScores(player1Name,player2Name,player1Score,player2Score)
root= Tk()
root.title("Tic Tac Toe")
root.geometry("200x100")
app = Application(root)
root.mainloop()
main()
Monday, January 26, 2009
Getting Linux Distrobutions
Linux Distros:
Ubuntu
If you have an extra hard drive that you can put in your computer than this is a great distro of linux to learn on for the desktop. It is super easy to use and update.
Mandriva
Mandriva One for the linux that runs off of the CD that I am using in class.
Burning OS Images to a Disk on Windows for Free:
ImgBurn
Cheap Linux Distrobutions
If you can not get your linux disk to boot from your computer when it is in the CD/DVD drive after you have restarted the computer then you will need to go into your BIOS and setup the boot sequence to where the CD/DVD drive is before the hard drive in the boot sequence order.
1. CD/DVD
2. Hard Drive
Then save your BIOS configuration and exit the BIOS setup screen. Then restart your computer and your computer will boot off of the CD/DVD that has linux on it.
Ubuntu
If you have an extra hard drive that you can put in your computer than this is a great distro of linux to learn on for the desktop. It is super easy to use and update.
Mandriva
Mandriva One for the linux that runs off of the CD that I am using in class.
Burning OS Images to a Disk on Windows for Free:
ImgBurn
Cheap Linux Distrobutions
If you can not get your linux disk to boot from your computer when it is in the CD/DVD drive after you have restarted the computer then you will need to go into your BIOS and setup the boot sequence to where the CD/DVD drive is before the hard drive in the boot sequence order.
1. CD/DVD
2. Hard Drive
Then save your BIOS configuration and exit the BIOS setup screen. Then restart your computer and your computer will boot off of the CD/DVD that has linux on it.
Monday, January 5, 2009
Virtual Library Python Programming For The Absolute Beginner
Python Programming For The Absolute Beginner for the Virtual Library so you don't have to spend any money. This is the first edition instead of the second edition like they have on Amazon. So checkout your virtual library.
Evil Message
import sys
import math
def evilmsg(person):
print "This computer is going to eat %s" % person
return
person=input("Enter your name here: ")
evilmsg(person)
stuff=input("Hit a key: ")
import math
def evilmsg(person):
print "This computer is going to eat %s" % person
return
person=input("Enter your name here: ")
evilmsg(person)
stuff=input("Hit a key: ")
Enter A Number
import sys
import math
def add(num1, num2):
sum=num1+num2
return sum
num1=input("Enter a number here: ")
num2=input("Enter a number here: ")
sum=add(num1,num2)
print "The sum of %d" % num1
import math
def add(num1, num2):
sum=num1+num2
return sum
num1=input("Enter a number here: ")
num2=input("Enter a number here: ")
sum=add(num1,num2)
print "The sum of %d" % num1
Math
import sys
import math
def MenuMsg():
print "Select an option from the menu:"
print "1: add a number"
print "2: multiply a number"
print "3: subtract a number"
print "4: divide a numer"
choice=input("Enter your selection here: ")
return choice
def ProcessChoice(choice,x,y):
if(choice == 1):
ans=x+y
elif(choice == 2):
ans=x*y
elif(choice == 3):
ans=x-y
elif(choice == 4):
if(y == 0):
print "can't divide by 0"
else:
ans=x/y
return ans
choice=MenuMsg()
num1=input("Enter the 1st whole number here: ")
num2=input("Enter the 2nd whole number here: ")
ans=ProcessChoice(choice,num1,num2)
print "The answer is %d" % ans
quit=input("Enter a 1 and then hit enter: ")
import math
def MenuMsg():
print "Select an option from the menu:"
print "1: add a number"
print "2: multiply a number"
print "3: subtract a number"
print "4: divide a numer"
choice=input("Enter your selection here: ")
return choice
def ProcessChoice(choice,x,y):
if(choice == 1):
ans=x+y
elif(choice == 2):
ans=x*y
elif(choice == 3):
ans=x-y
elif(choice == 4):
if(y == 0):
print "can't divide by 0"
else:
ans=x/y
return ans
choice=MenuMsg()
num1=input("Enter the 1st whole number here: ")
num2=input("Enter the 2nd whole number here: ")
ans=ProcessChoice(choice,num1,num2)
print "The answer is %d" % ans
quit=input("Enter a 1 and then hit enter: ")
Hang Man Example Code Class #3
# Hang Man Game
import random
hangman=[]
money=23.56
count=0
num1=5
num2=13
ans=num1+num2
names=[]
names.append("Johnny")
names.append("Sue")
names.append("Ann")
names.append("Bob")
names.append("Jack")
name1="Johnny"
name2="Sue"
name3="Ann"
name4="Bob"
name5="Jack"
message="All my friends "
guessword=[]
char=' '
charTest='a'
hangdesign="""
=======
"""
hangman.append(hangdesign)
#nameSel=2
nameSel=random.randrange(0, len(names))
print
print message
for count in range(0, len(names)):
if(count < (len(names)-1)):
message = message+names[count]+", "
else:
message = message+names[count]
print message
message=message+" went to school together."
print message
print
message="All my friends "
print
print message
count=0
while(count < len(names)):
if(count < (len(names)-1)):
message = message+names[count]+", "
else:
message = message+names[count]
count=count+1
print message
message=message+" went to school together."
print message
print
print "All my friends "+names[0]+", "+names[1]+", "+names[2]+", "+names[3]+", "+names[4]+" went to school together."
print "All my friends "+name1+", "+name2+", "+name3+", "+name4+", "+name5+" went to school together."
print
print len(names)
print
print len(names[nameSel])
print nameSel
print
for count in range(0, len(names[nameSel])):
guessword.append("_")
print guessword
for count in range(0, len(names[nameSel])):
char=names[nameSel][count]
if(charTest == char):
guessword.insert(count,char)
print char
print guessword
print
print str(num1)+"+"+str(num2)+"="+str(ans)
print
print hangman[0]
import random
hangman=[]
money=23.56
count=0
num1=5
num2=13
ans=num1+num2
names=[]
names.append("Johnny")
names.append("Sue")
names.append("Ann")
names.append("Bob")
names.append("Jack")
name1="Johnny"
name2="Sue"
name3="Ann"
name4="Bob"
name5="Jack"
message="All my friends "
guessword=[]
char=' '
charTest='a'
hangdesign="""
=======
"""
hangman.append(hangdesign)
#nameSel=2
nameSel=random.randrange(0, len(names))
print message
for count in range(0, len(names)):
if(count < (len(names)-1)):
message = message+names[count]+", "
else:
message = message+names[count]
print message
message=message+" went to school together."
print message
message="All my friends "
print message
count=0
while(count < len(names)):
if(count < (len(names)-1)):
message = message+names[count]+", "
else:
message = message+names[count]
count=count+1
print message
message=message+" went to school together."
print message
print "All my friends "+names[0]+", "+names[1]+", "+names[2]+", "+names[3]+", "+names[4]+" went to school together."
print "All my friends "+name1+", "+name2+", "+name3+", "+name4+", "+name5+" went to school together."
print len(names)
print len(names[nameSel])
print nameSel
for count in range(0, len(names[nameSel])):
guessword.append("_")
print guessword
for count in range(0, len(names[nameSel])):
char=names[nameSel][count]
if(charTest == char):
guessword.insert(count,char)
print char
print guessword
print str(num1)+"+"+str(num2)+"="+str(ans)
print hangman[0]
Subscribe to:
Posts (Atom)