Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #1K
~4K People Reached
Favorite Tags
Member Avatar for freddypyther

Hi! I've searching for python IDE's and I've not found anything like NetBeans for java. I downloaded Dr Python but was too simple, I tried to install PyDev on Eclipse but I got some errors. I saw some screenshots about SPE and I said whoa! that seems good, but I …

Member Avatar for brandonrunyon
0
981
Member Avatar for 1qaz2wsx7

Hi :) I have some object in a forum, and i want that those objects will be resize and moved proportionatly after i resize the forum. (like when i make the forum width bigger, i want that all the object will get bigger with the forum) Is there an Automatic …

Member Avatar for jamesonh20
0
99
Member Avatar for daddy89
Member Avatar for StrikerX11

Hi, I've been trying to code a simple file sharing system in python by using Discovery server -indexer- model Server: [CODE]#!bin/python import socket import sys import os import threading from utils import serialize, deserialize, PeerInfo class NotSupportedCommand(Exception): pass class DiscoveryServer(object): '''Indexer...''' def __init__(self, port, maxPeers=5): self.port=port addr=('', self.port) self.maxPeers=maxPeers self.supportedCommands=["/register", …

Member Avatar for StrikerX11
0
120
Member Avatar for jobs

Why can't you do this? [code=python] a = [] a.append('1').append('2') [/code] You can only do this: [code=python] a.append('1') a.append('2') [/code]

Member Avatar for tharippala
0
70
Member Avatar for Robbydude629

hello i'm new here but i have made a little python calculator and was wondering, if i wanted to give a copy to my friend how would i change it from a python file to a umm .zip(just an example) file where my friend can just unzip it and use …

Member Avatar for Robbydude629
0
94
Member Avatar for MrShoot

Hi, this is my first forum message so I'll make a brief introduction. I'm from Canada and I am Computer Science student. I enjoy working with computers, specially web programming. It has come to my attention (and also a school requirement) to learn Python. So here I am with my …

Member Avatar for Ene Uran
0
158
Member Avatar for City one

Hi, Once I press S(to start), I would like to make only one IP (that I entered manually) to be ping each 60 secondes, and print Hello at each second or 2(whatever) and If I press Q, than it`s stop. Can somebody provide me a syntaxe that can help me …

Member Avatar for StrikerX11
0
57
Member Avatar for rjmiller

ok, I have a list of numbers and i want to return values in a range that are not in the list of numbers... I'm thinking of something like this: [ number for number in range(1, 10) if != nums ] However, This always prints all the numbers in that …

Member Avatar for rjmiller
0
99
Member Avatar for jainam2209

Please can anyone help me out of this problem? I want to know that how can we reboot computer (any OS) using C language?

Member Avatar for Ramy Mahrous
0
107
Member Avatar for jobs

test = [random.randint(1,10) for i in range(20)] Can someone what does the random.randint(1,10) fron to for loop does, and the square brackets around it means, make it a list?

Member Avatar for vegaseat
0
359
Member Avatar for bd1234
Member Avatar for StrikerX11
0
60
Member Avatar for StrikerX11

Hi, How can i create a ref to a string ? it doesn't work like lists :S List : (IDs are the same!) [CODE] >>> li=[1, 2, 3, 4, 5] >>> li_ref=li >>> id(li) 13545800 >>> id(li_ref) 13545800 >>> li.pop() 5 >>> li [1, 2, 3, 4] >>> id(li) 13545800 …

Member Avatar for jrcagle
0
108
Member Avatar for php111

Hello gang, I was actually really my old topic on this forum. I heard that Python and Ruby would be for me to start with. Does that sound right instead of jumping right in to C and C++? What is required in Python? Is there free tutorials on that language? …

Member Avatar for vegaseat
0
176
Member Avatar for StrikerX11
Member Avatar for StrikerX11

Hi, What do you think of this OS ? [url]http://sharpos.sourceforge.net[/url]

0
68
Member Avatar for katharnakh

Hi Bumsfeld, thanks for sharing, I haven't come across this before [quote=bumsfeld;398646] [code=python]# works on Windows or Linux, also Vista import os os.system(['clear','cls'][os.name == 'nt']) [/code][/quote] Can please tell me how is the following code is working. I mean, [code=Python] >>> ['clear','cls'] [True] 'cls' >>> ['clear','cls'] [False] 'clear' >>> ['a','b']['some_string' …

Member Avatar for StrikerX11
0
355
Member Avatar for anyedie

Im pretty much a python and for that matter a programming noob. I will learn and little, then quit, learn some more, and quit again. The past few times i've been working on the same project, and mostly keep giving up on python because I cannot seem to find an …

Member Avatar for katharnakh
0
98
Member Avatar for JBI_UK

Hey, i have been trying to find a solution of how to do this. Basically i want either a label or something that when you load up the form it shows the users current username like on the About boxes of windows programs or something towards that it says "This …

Member Avatar for JBI_UK
0
131
Member Avatar for amtallah
Member Avatar for Killer_Typo
0
117
Member Avatar for mrjoli021

I am new to VB I am a c++ programmerr. I know in c++ when you declare a variable as an int it will return a whole number. In VB I am delaring a variable as an interger and when I do my calculations it comes back with a decimal. …

Member Avatar for StrikerX11
0
124
Member Avatar for Zorbie

I read somewhere about somebody importing the sys.py module. I can't find the bugger on my system! I have python 2.5.1 installed on this Waxows XP machine. I did a search for sys.py in the c:\python25 folder and sys.py isn't there! Isn't it supposed to be installed by default? If …

Member Avatar for StrikerX11
0
154
Member Avatar for acezrwild817

In the VS command prompt that is part of the VS SDK you can enter the following to generate an xsd file from an xml file: xsd XMLfilename.xml This will generate an xsd file with the same name as the xml file Then you can enter: xsd [.xsd file generated …

Member Avatar for acezrwild817
0
185