15,175 Topics
| |
In a bigger program I made I need to be able to generate a grid with n rows and m columns. After that I need a function that will let me rotate this grid and with it rotate the values of the original grid. This is the code that let's … | |
As part of a project I need to draw a fence on turtle graphics that incorporates a loop. Can someone help me with the code I will need!! | |
Well, first of all I will speak much so that you guys can target my problem better. Hello, I am a poster from the C++ forum. Hence, I am a well established C++ programmer. Now I want to learn Python. First of all, should I? I mean, keeping in mind … | |
[TEX][/TEX]Hello All Gurus! I have developed a web service using DotNet Framework 3.5, having one webmethod that have a string parameter and returns parameter value after concatenating it with some string. When I tried to call it from the SOAP request, it only returns the concatenated string while parameter value … | |
Hi All... I am testing a Web application (on Windows XP/MSIE) with PAMIE and the web application uses popups (not actual web popup, but rather an annnoying modal messagebox). As soon as the message box appears, the script freezes. It simply does not advance to the next command until I … | |
| hi again, if you remember i had been asking how to extend my music player to do two things: 1)play music from folders and subfolders (complete) 2)change song at the end of each one (incomplete) well after looking around a while i found the answer : [code] # create a … |
hi everyone, i urgently need your help for my project. I need to implement collision detection in my program. I have been trying for a month but so far I haven't found any good solution. I'm providing my piece of code hoping you guys can help me out. Thanks [icode] … | |
Hi, Have written a script that downloads rss feeds, compares the latest download with the one before using md5, and if they're different sends an email with the updated headlines. However, have noticed the email update is sent even for a change as minor as the insertion of a comma. … | |
does anyone know how to underline the selected text from a textview . we are using pygtk and glade plz reply quickly. urgent urgent urgent!!!!!!!!!!!!!!!!!!!!!! | |
Hi, I've written two programs.One is for sending data from outside,another is for receiving the message.Both work well.But I also want to get the message value for next program.The problem is I have no idea how to get the value from the receiver. PLZ help me out!Many Thanks! This is … | |
I am in need of a script that reads a log file, takes some data from the file and saves it in a .csv (coma separated value) format. The example log is below: log.txt: Date: 3/14/09 Device #: 1 Test: Cont: pass Test: Leakage: pass Test: INL: 0.88 Test: DNL: … | |
Hello, Python newbie here. I have been using various templates to play around with wxPython and see what I can do and am stuck at the following bit - I have a MyPage panel. This panel has wxTextCtrl boxes and when the button the panel has is clicked I want … | |
I am writing a dice rolling simulation and i need help redefining a variable inside a loop. | |
Hi, I installed VTK for python from source (locally compiled) on Windows XP. However, I got some trouble with vtkTkRenderWidget. The error message is something like 'this application has requested the Runtime to terminate in an usual way'. Does anybody have some idea about this? Thanks in advance. tj | |
Hi, I am looking for a tool in python which can build a model based on some set of training documents with manually assigned keywords. And then it uses that model to extract keywords from new documents. I want to know whether using NLTK can I do this? Reply me … | |
I recently bought the book "Beginning Python" Norton, Samuel, Aitel et al published by Wrox/Wiley in 2005. Has anybody else bought this book and actually found the source code at the website they list in the book? I don't want to sound vinegarish, but this has got to be the … | |
I am looking to send an instant message through aim using python, or a way to send a txt message using python to a sprint cell phone | |
Anyone know a simple way in phython to read an XML document ant generate a schema? Ive been playing with minidom all day but I cant get it to do what I want :( Thanks in advance | |
I've decided to mess around with Tkinter and import os a bit. I'm running ubuntu 8.10, if that helps any. Here is what my program was supposed to do: have two simple buttons, one labeled 'on' and one labeled 'off'. I wanted the on button to launch nautilus and the … | |
I am facing a problem when i tried to run the python code. The error is " Name error:global name 'receive' is not defined". May I know how can I solve the problem? I am using this code in my mobile phone to communicate with microcontroller to control ON/OFF ports … | |
Good day. As the title sais, i am trying to extract pixel colors from images, in Python 3. I know that for python 2.x, PIL (Python image library) can do that, via Image > getpixel((x,y)). It returns the colors as a list with 3 parameters, Red, Green and Blue. This … | |
I installed successfully, it is in python26/Lib/site_packages but it won't import. Here's the error message: [CODE]>>> import pygame Traceback (most recent call last): File "<pyshell#0>", line 1, in <module> import pygame File "C:\Python26\lib\site-packages\pygame\__init__.py", line 93, in <module> from pygame.base import * ImportError: DLL load failed: The specified module could not … | |
I was wondering if someone could help me with modifying a program. I first must write a program that not only encrypts, but decrypts a message as well. This part I think I have figured out (although it is probabaly a little bloated) here it is: [code] #Cypher.py #A program … | |
Hey there! I've written a program and outside of that program I want to make a new python program which generates lists (or in some cases maybe dictionaries) from certain directories and the files in them. I've puzzled around with the os.path(), os.chdir(), os.getcwd() functions, the glob.glob() function and I've … | |
Hi, [code] A= [1,3,5] B=[12,24,36,48,60,72] [/code] Here list A is a list of the elements in list B i want to remove. How can I do this so that I would get list B to then look like: [code] B=[12,36,60] [/code] Thanks in advance, Zach | |
The readlines() method for file objects return the lines as a list (or is it a tuple?) however each element contains the \n character which prevents the element from being used in another function. How do I remove the \n character from the elements? I have made some code which … | |
This is my code: The thing is it brings up the check boxes. But every time, no matter which ones I check, it says decommission tanks, and decommission cm's. That's all it says, no matter which combination of them I push? what's wrong with it? [CODE=Python]from wxPython.wx import * class … | |
Hi guys I am new to python .. i was trying to move sequential images from a folder with multiple types of sequences in same folder like a_bc_01.jpg a_bc_02.jpg a_bc_03.jpg c_de_05.jpg c_de_06.jpg etc... to different folders [ICODE] import os, glob, os.path import array path = 'd:\del' for file in glob.glob( … | |
I'm not sure if this is even possible (please help me if it is). But I need to make a python code that will grab a certain portion from a website, and save it temporary. Let me explain. This program audits nations (this is a game) and displays a code … | |
Hi I'm trying to use PIL to get data from an image and find 'unusual' RBG values but haven't found the right way. [code] Import Image, PIL im=Image.open("image.bmp") ans=im.getdata() print ans [/code] This doesn't examine the RGB values for me to find any unusual ones. If tried others like: im.load() … |
The End.