Forum: Python Jul 20th, 2009 |
| Replies: 9 Views: 345 yep i had downloaded the wingware IDE and it wasnt a free software, apart from wing IDE , do u suggest ne thing else i guess netbeans should do good. |
Forum: Python Jul 19th, 2009 |
| Replies: 9 Views: 345 well any other ingenious method.. since i am new to python and i just installed it . is there any other way can i solve the issue may be some other toolkit or stuff , i guess it would be better if... |
Forum: Python Jul 19th, 2009 |
| Replies: 9 Views: 345 i have recently installed wxpython on python2.5 and wrote the following code
import wx
app = wx.App()
app.MainLoop()
Then i got this error(attached file) , and i have no idea what it... |
Forum: Python Apr 2nd, 2009 |
| Replies: 14 Views: 979 well at first i completyl apologise cuz when i saw the thread , i actually didnt navigate thru the forum section , so just mistook as c form
second of all
well even though its a c code , i... |
Forum: Python Mar 31st, 2009 |
| Replies: 14 Views: 979 i guess this should do the trick...
int leap ( int int x)
{
if (!(x%100) && ( x %400 || x %4))
return 1;
} |