No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
Re: Module for handling strings (learning stuff) [CODE]####################################### # Programmed by : StrikerX # Purpose : Module for handling string ####################################### def toUpper(string): string_upper = "" for char in string : if ord(char) < 97 : string_upper += char elif ord(char) >= 97 : string_upper += chr(ord(char) - 32) print string_upper … | |
| |
Re: Well, Try to use this one :[url]http://www.download.com/FLV-Player/3000-2139_4-10467081.html[/url] | |
Hi guyz , i don't know if it's the right place to post this thread at .anyway , I've router "Repotec", and i'm trying to forward a port . i tried this : Disable the firewall . NAT -> Virtual Servers -> Adding the Port and save it . it … | |
Hi, I was wondering, how to use python in Visual Studio.NET or Sharp Develop ?? free software i hope :) Writting GUI is great when it's just drag & drop . Thanks in advance. | |
Re: I guess this what you are looking for something like this [code] #!bin/python num = int(input("Enter number : ")) #getting the starting number . while (num < 100): #start the loop . print "it's less than 100, add more numbers ." another_num = int(input("Enter number : ")) num = num … | |
hi guyz, i'm a Python user (not so long) , anyway i've read some stuff about lua . i've written function like this [code]def pair(dic = {} ): return dic.keys(), dic.values()[/code] a dictionary is a parameter to the pair function . to use it like this : [code]dic = {1 … | |
Hi, i need to do a program that listen to port 80 (it doesn't really matter about the port ) and do a command passed by user .. like this for [URL]http://localhost:80/command[/URL] example : [URL]http://localhost:80/openurl:url[/URL] the program open the url passed .. and so on . the problem : i … |
The End.