Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. merwin

    Automatically naming objects in Tkinter

    a bit trickier:<br><br>class dummy: pass<br><br>cnt = 0<br>win=[]<br>for x in list:<br>&nbsp;&nbsp;entry = Entry(window)<br>&nbsp;&nbsp;label = Label(window, text=x)<br>&nbsp;&nbsp;label.grid(row=cnt)<br>&nbsp;&nbsp;entry.grid(row=cnt, column=1)<br>&nbsp;&nbsp;cnt =...
  2. merwin

    Automatically naming objects in Tkinter

    Here is one solution:<br><br>cnt = 0<br>win=[]<br>for x in list:<br>&nbsp;&nbsp;entry = Entry(window)<br>&nbsp;&nbsp;label = Label(window, text=x)<br>&nbsp;&nbsp;label.grid(row=cnt)<br>&nbsp;&nbsp;entry.grid(row=cnt, column=1)<br>&nbsp;&nbsp;cnt = cnt+1<br>&nbsp;&nbsp;win.append({'entry'...
  3. merwin

    &gt;1000 ports on a single POP

    Hi, anyone have some pointers towards access<br>server equipment, ISDN+analog (1:5) - european standard E1,E3 etc., that can handle &gt;1000 ports, on a single POP, while still handling BOD, dual ISDN etc. I've looked up the Lucent TNT's which have (as far as i can tell a limit of 480 analogs ?)
  4. merwin

    What is the best Python tutorial ?

    You'll really have to print out the<br>Python Library reference.. on<br><A HREF="http://www.python.org" TARGET="_new">http://www.python.org</A> (if you didn't know :)<br>355 pages (last version)<br><br>its really good - and it's just about the<br>only reference you'll ever need to...
  5. merwin

    Newbie has questions about the FOR statement:

    Well if you want the same as for(;;)<br>then just simulate it:<br><br>&nbsp;&nbsp;&nbsp;&nbsp;i=2<br>&nbsp;&nbsp;&nbsp;&nbsp;while i&lt;10:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# body<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;i=i+1<br><br>otherwise if its just the simple...

Part and Inventory Search

Back
Top