PDA

View Full Version : where to get help programming?



Xbehave
October 1st, 2009, 10:41 PM
What's the best forum (or possibly IRC chan) to get help with programming? (Specifically python)

I sometimes need help understanding why what I have done is wrong, other-times I'm just looking for best practices or need advice on the best way to implement something.

Bachstelze
October 1st, 2009, 10:45 PM
There is a Programming Talk (http://ubuntuforums.org/forumdisplay.php?f=39) section here. Otherwise, there's #python on Freendode, and the Python mailing-lists.

clonne4crw
October 2nd, 2009, 12:37 AM
What do you need help with? I use python a lot.:P

Xbehave
October 2nd, 2009, 01:30 AM
Generally they are silly bugs im missing, in this case it was a type error. I try #python, #qt and they are hit and miss as to if i get a good answer so i was looking for a forum where i can post for noob advice, both bug fixing and general advice.

I hadn't tried programing section (http://ubuntuforums.org/forumdisplay.php?f=39) because from other areas of the board i never seam to get any help, but it seams sort of active so will give it a try, thx

juancarlospaco
October 2nd, 2009, 01:40 AM
from Tkinter import *
root = Tk()
label = Label(root, text = 'What do You Need?')
label.pack()
root.mainloop()