Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 53 online users. » 0 Member(s) | 50 Guest(s) Bing, Google, AOL
|
Latest Threads |
Integer Factorization Too...
Forum: Code sharing
Last Post: buran
Yesterday, 07:43 AM
» Replies: 2
» Views: 359
|
My goal to be hired worki...
Forum: News and Discussions
Last Post: GnomeSweetGnome
Yesterday, 12:21 AM
» Replies: 2
» Views: 992
|
Unable to resolve FileNot...
Forum: General Coding Help
Last Post: noisefloor
Sep-29-2025, 05:45 PM
» Replies: 6
» Views: 1,044
|
Comparing 2 100GB Drives/...
Forum: General Coding Help
Last Post: snippsat
Sep-29-2025, 12:59 PM
» Replies: 8
» Views: 726
|
Select Python comment (#)...
Forum: General Coding Help
Last Post: tester_V
Sep-28-2025, 06:39 PM
» Replies: 7
» Views: 3,036
|
what does % stand for in ...
Forum: General Coding Help
Last Post: Gribouillis
Sep-27-2025, 06:49 PM
» Replies: 4
» Views: 2,475
|
My First App
Forum: Code Review
Last Post: carlbidwell
Sep-27-2025, 10:53 AM
» Replies: 8
» Views: 9,053
|
how to export a dictionar...
Forum: GUI
Last Post: noisefloor
Sep-26-2025, 05:13 PM
» Replies: 4
» Views: 1,501
|
Is the interpreter that c...
Forum: General Coding Help
Last Post: noisefloor
Sep-26-2025, 01:17 PM
» Replies: 1
» Views: 1,392
|
pdf file processing: how ...
Forum: General Coding Help
Last Post: noisefloor
Sep-26-2025, 01:14 PM
» Replies: 6
» Views: 5,721
|
|
|
counting items in a list of number combinations |
Posted by: Dixon - Feb-19-2020, 06:08 PM - Forum: General Coding Help
- Replies (2)
|
 |
import itertools
numbers = [1,2,3,4,5,6,7,8,9,10]
result = itertools.permutations(numbers,2)
for item in result:
print (item) ..... More
|
|
|
tkinter prob |
Posted by: DPaul - Feb-19-2020, 04:34 PM - Forum: GUI
- Replies (1)
|
 |
Hi,
I am using tkinter and may be doing something not allowed.
Here is the pseudocode:
I have a listbox with items in it.
When i click on an item it..... More
|
|
|
JSON to Dataframe |
Posted by: DrX - Feb-19-2020, 04:18 PM - Forum: Data Science
- Replies (1)
|
 |
Hello everyone, I am new here so please be gentle. I need to parse some JSON and convert to a Dataframe but am having the difficulty in getting the ri..... More
|
|
|
ODBC iPhone to PC |
Posted by: KipCarter - Feb-19-2020, 11:53 AM - Forum: General Coding Help
- No Replies
|
 |
I am making good progress in my Python crash course! This forum has been extremely helpful in that effort.
I want to expand on what I have learned t..... More
|
|
|
urllib3 Problem? |
Posted by: gw1500se - Feb-18-2020, 07:05 PM - Forum: General Coding Help
- Replies (8)
|
 |
I have a script that uses the MailJet REST API which has just started failing. I don't understand what the problem is because the error message refere..... More
|
|
|
'int' object is not iterable |
Posted by: el_bueno - Feb-18-2020, 05:44 PM - Forum: General Coding Help
- Replies (2)
|
 |
Hello Everyone!
Why do I see the error ('int' object is not iterable) when I add the method list?
[python]list02=[a,b,c,d,e,f,g,h,i,..... More
|
|
|
Help in pandas group by |
Posted by: prakash8813 - Feb-18-2020, 08:39 AM - Forum: Data Science
- No Replies
|
 |
I have below dataframe:-
df=pd.DataFrame({'a':[1,1,1,1,2,2,2,2],'b':[1,1,2,2,2,6,7,7]})
a b
1 1
1 1
1 2
1 2
2 2
2 6
2 7
2 7
I want to cre..... More
|
|
|
Very big font needed |
Posted by: juhanjuku - Feb-18-2020, 08:19 AM - Forum: GUI
- Replies (6)
|
 |
I need 5 digits counter number to fill HD screen, so it can be visible from long distance.
So far I can't find how to make fonts bigger than 127?
I ..... More
|
|
|
|