15,185 Topics

Member Avatar for
Member Avatar for lewashby

[CODE]background_image_filename = 'sushiplate.jpg' sprite_image_filename = 'fugu.png' # imports import pygame from pygame.locals import * from sys import exit from gameobjects import Vectory2 pygame.init() screen = pygame.display.set_mode((640, 480), 0, 32) background = pygame.image.load(background_image_filename).convert() sprite = pygame.image.load(sprite_image_filename).convert_alpha() clock = pygame.time.Clock() position = Vectory2(100.0, 100.0) speed = 250. heading = Vectory2 while True: …

0
71
Member Avatar for jayzee1989

So I have an assingment that I am stuck on -_- So I am supposed to create a code that "tests" out a range of integers and determine the perfect squares(4,16,25, etc) within the range without using square root calculations and using a function. I have written the following, and …

Member Avatar for TrustyTony
0
107
Member Avatar for JJHT7439

Alright, so for the lab I have to do using turtle in python I have to draw an H and then draw H's off of each end of the first H at a 45 degree angle and switch the color between blue and orange. The first H has to be …

Member Avatar for JJHT7439
0
105
Member Avatar for python_user

Hi Everybody, Can someone please tell me how to pass a frame to other class method I am able to pass the frame but when i pack some entry field..the window stops responding here is my code [CODE]class InfoFrame: def addAttributeCriteria(self, parent = None, type = '', attrib = {}, …

Member Avatar for TrustyTony
0
144
Member Avatar for sravi.pearl

hai i am new to python, can any one please help me how to parse data from an html file, i want to display the content which lies under a particular tag,and also can you please tell where can i find tutorials for this topic with sample examples.

Member Avatar for griswolf
0
248
Member Avatar for novice20

can anyone pls illustrate the use of snmpget in python, along with the explanation?? thanx in advance:)

0
70
Member Avatar for sss33

out = open ("output.jh") towrite= a+b out.write (towrite) When you want to put an output to a file. instead of the information going right next to eachother how could they go one over the other in the file. This would be for many different outputs.

Member Avatar for cghtkh
0
97
Member Avatar for janaka_17

i'm a new comer to this language. can anybody tell me why this simple piece of code gives me an error indicating that "NameError,name 'example' is not defined". by the way i use Wing IDE to write my codings. class example(): def _init_ (): print("a class is created") def m1 …

Member Avatar for woooee
0
85
Member Avatar for sss33

A file called input. john 9 7 6 7 4 3 9 5(double space)76 54 53 77 65(double space)4 45 45 def main(): fin = open ("input", "r") line = fin.readline() x = line.split(" ") a= (int (x [1])+ int (x [2]) +int (x [3])+ int (x [4]) +int (x …

Member Avatar for cghtkh
0
135
Member Avatar for lamtupa

Dear friends, I get a assigment and i very confused with this cases. How to write a function that computes the area of an arbitrary polygon – so not necessarily a triangle or rectangle, etc. The input of the function should be a list of points, where each point is …

Member Avatar for TrustyTony
0
202
Member Avatar for nbuchholz

I'm in the midst of developing a Python toolset for some proprietary hardware used at NOAO. The code has to write a series of EEPROMS in the hardware to determine conversion factors for hardware attributes. The EEPROM format is 2048 32-bit words each word represents the slope, intercept, minimum or …

0
97
Member Avatar for Roelof Wobben

hello I have this programm [code] class zoeken() : pass def __len__(self): return 0 def __str__(self): return test2 def find(self, strng="", ch="", start=0, stop=0): index = start while index < len(strng) and index < stop: if strng[index] == ch: return index index += 1 return -1 test = zoeken() test.woord …

Member Avatar for snippsat
0
119
Member Avatar for znake

Hi, I've just started learning python (and programming overall) and I would like to ask for a little help from you, guys. What fascinates me (and you may think it's weird) is programs which simulate human's action/behavior (bots), so I wanted to ask if anyone could show me some good …

0
168
Member Avatar for bettersaid

someone knows how to launch an app in mac?? [CODE] import os class LaunchApp: def launch(self): os.startfile("/Applications/QuickTime Player.app") s = LaunchApp() s.launch()[/CODE] this code works on windows and [CODE]os.system('gnome-open ' + /path)[/CODE] on linux but in mac, it returns this error "AttributeError: 'module' object has no attribute 'startfile'"

Member Avatar for nathan099
0
1K
Member Avatar for acrocephalus

Hello! I have a table with some rows and cells (code at the end), and created a function which searches for text inside the cells and returns the row number where the text is (to simplify the example, only English Name is working). Then, it should set the grid cursor …

Member Avatar for acrocephalus
0
156
Member Avatar for Macooper26

I just downloaded Python 2.7 and 3.2 and it just looks like DOS. I'm using Windows, so I don't know if that's the problem--because I saw someone using a MAC and it looked like they didn't have the same problems that I'm having--because I can't save and I have no …

0
35
Member Avatar for acrocephalus

Hello! How can I destroy a wx.MessageDialog after a given amount of time? I have tried EndModal without success. Cheers! Dani

Member Avatar for SoulMazer
0
83
Member Avatar for lewashby

I have another post entitled 'understanding wxPython' in which my code runs but fails to build the scroll bars as shown by my python programming book. Note that the code in the book is running on Windows and mine is running on Ubuntu.

Member Avatar for SoulMazer
0
132
Member Avatar for ihatehippies

why does this fail to call any event? [CODE=python] def StartTimer(self, timer = 1): timer_data = { 1: (self.TimeKeeper, False, 50), 2: (self.InterimSearch, True, 200), 3: (self.InterimCurSearch, True, 200), 4: (self.SetOpaque, False, 50), 5: (self.DisplayPhoto, True, 200) } function, singlefire, time = timer_data[timer] timer = str(timer) # class of constants …

0
149
Member Avatar for bspace

Hi, I'm trying to learn OOP, and I've run into a problem. I am supposed to have the user create a user name, and then I'm supposed to import a list of movies for the user to rate. I created a class called Movie. The function within is supposed to …

Member Avatar for bspace
0
255
Member Avatar for sss33

How to convert numbers from a file into integers the numbers in the file are alerady split but they are strings. Doesnt anyone know how to convert them to integers so they can be manipulated as numbers.

Member Avatar for griswolf
0
101
Member Avatar for Ghostenshell

Really stuck on this and its supposed to be easy. I'm supposed to input 2 positive nonzero integers into x and y. Then return the value of x times y. The book has an example of 7 * 4 = 4 + 4 + 4 + 4 + 4 + …

Member Avatar for TrustyTony
0
141
Member Avatar for james27

hello ALL im making some simple python post script but it not working well. there is 2 part to have to login. first login is using 'http://mybuddy.buddybuddy.co.kr/userinfo/UserInfo.asp' this one. and second login is using 'http://user.buddybuddy.co.kr/usercheck/UserCheckPWExec.asp' i can login first login page, but i couldn't login second page website. and return …

0
88
Member Avatar for kerimabdullah

#hi friends #when I try to press Control-a the characters in the text box are not selected # I want help but I dont know class type programming. My codes are below. [CODE] from Tkinter import * root = Tk() def tcopy(event): mytextbox.clipboard_clear() mytextbox = text.get("sel.first", "sel.last") mytextbox.clipboard_append(Textkut) def tcut(event): …

0
32
Member Avatar for kerimabdullah

#hi friends #when I try to press Control-a the characters in the text box are not selected # I want help but I dont know class type programming. My codes are below. [CODE] from Tkinter import * root = Tk() def tcopy(event): mytextbox.clipboard_clear() mytextbox = text.get("sel.first", "sel.last") mytextbox.clipboard_append(Textkut) def tcut(event): …

0
34
Member Avatar for softbrianes

Hello, Im failing to crack the messege" XWUFTOSNWHCFGIBWYATYJIB" which is the solution to the question " What do you call an old hen that makes annoying noises?" Please help me solve it. Kindest regards Softbrianes

Member Avatar for redyugi
0
51
Member Avatar for softbrianes

Hello, I am struggling to decrypt the messege "XWUFTOSNWHCFGIBWYATYJIB" which is the answer to the question "What do you call an old hen that makes annoying noises?" Please help me write a python code which can possibly decrypt the messege. Kindest Regards Softbrianes

0
46
Member Avatar for sss33

How to make a program in python to do this? 20% of the score comes from the average of 8 Quizzes (each has maximum of 10 points) 20% of the score comes from the average of 2 exams (each has maximum of 100 points) 40% of the score comes from …

Member Avatar for vegaseat
0
134
Member Avatar for Ultralisk

Is there a way to sort an empty list of strings as you add more values to the list? I cannot find a decent example of this anywhere and struggling with this. The insertion sort seemed like the logical plan, but I cannot for the life of me find anything …

Member Avatar for vegaseat
0
2K
Member Avatar for lewashby

[CODE]import wx # create window app = wx.App() win = wx.Frame(None, title = "Simple Editor", size = (410, 335)) win.Show() # create buttons loadButton = wx.Button(win, label = 'Open', pos = (225, 5), size = (80, 25)) saveButton = wx.Button(win, label = 'Save', pos = (315, 5), size = (80, …

Member Avatar for vegaseat
0
110

The End.