Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 19,975
» Latest member: Schirag
» Forum threads: 38,732
» Forum posts: 175,563
Full Statistics
|
Online Users |
There are currently 47 online users. » 0 Member(s) | 41 Guest(s) Applebot, Google, Bing, AOL, AOL
|
Latest Threads |
Integer Factorization Too...
Forum: Code sharing
Last Post: buran
6 hours ago
» Replies: 2
» Views: 177
|
My goal to be hired worki...
Forum: News and Discussions
Last Post: GnomeSweetGnome
Today, 12:21 AM
» Replies: 2
» Views: 808
|
Unable to resolve FileNot...
Forum: General Coding Help
Last Post: noisefloor
Yesterday, 05:45 PM
» Replies: 6
» Views: 851
|
Comparing 2 100GB Drives/...
Forum: General Coding Help
Last Post: snippsat
Yesterday, 12:59 PM
» Replies: 8
» Views: 550
|
Select Python comment (#)...
Forum: General Coding Help
Last Post: tester_V
Sep-28-2025, 06:39 PM
» Replies: 7
» Views: 2,915
|
what does % stand for in ...
Forum: General Coding Help
Last Post: Gribouillis
Sep-27-2025, 06:49 PM
» Replies: 4
» Views: 2,321
|
My First App
Forum: Code Review
Last Post: carlbidwell
Sep-27-2025, 10:53 AM
» Replies: 8
» Views: 8,897
|
how to export a dictionar...
Forum: GUI
Last Post: noisefloor
Sep-26-2025, 05:13 PM
» Replies: 4
» Views: 1,317
|
Is the interpreter that c...
Forum: General Coding Help
Last Post: noisefloor
Sep-26-2025, 01:17 PM
» Replies: 1
» Views: 1,243
|
pdf file processing: how ...
Forum: General Coding Help
Last Post: noisefloor
Sep-26-2025, 01:14 PM
» Replies: 6
» Views: 5,564
|
|
|
comparing 2 dimensional list |
Posted by: glennford49 - Mar-23-2020, 02:14 PM - Forum: General Coding Help
- Replies (10)
|
 |
i have this code:
[python]
num1=[[1,2,3],[1,2,4],[1,2,5]]
num2=[[1,2,3]]
for i in num1:
if (num2 == i):
print(..... More
|
|
|
Pip problem |
Posted by: Jules - Mar-23-2020, 01:54 PM - Forum: General Coding Help
- Replies (5)
|
 |
Hi there !
I'm a beginner and I have a problem : I want to install tensorflow and for that I need to import it with pip but unfortunately as soon ..... More
|
|
|
fishstore question for edx |
Posted by: geryhnd001 - Mar-23-2020, 08:29 AM - Forum: Homework
- Replies (1)
|
 |
I get no output.
It should ask the two questions and then respond with a sentence with them
[python]def fishstore():
fishtype=input("What is ..... More
|
|
|
Denoise image |
Posted by: smitha - Mar-23-2020, 05:42 AM - Forum: General Coding Help
- Replies (2)
|
 |
I want to implement non-local total variation for gamma noise removal using a gradient descent approach( for denoising a noisy image). Can anyone plea..... More
|
|
|
Qtableview adapte size to |
Posted by: WBPYTHON - Mar-22-2020, 06:50 PM - Forum: GUI
- Replies (3)
|
 |
Hello,
Is it possible to adapte the size of a Qtableview to the main window ? when I pull the window on the right side, I would like the Qtableview t..... More
|
|
|
email sent status |
Posted by: Kishore01 - Mar-22-2020, 04:09 PM - Forum: Networking
- No Replies
|
 |
Hi,
I have a requirement to send mail to customer email ids from an internal server.
In python, I am using SMTP.verify(address), but it returns th..... More
|
|
|
[Urgent] build code |
Posted by: GodMaster - Mar-22-2020, 02:49 PM - Forum: Homework
- Replies (2)
|
 |
Hello everyone, I hope y'all are well.
I have an urgent task that must do in 8 hours from now.
This task needs an expert with mathematics related to..... More
|
|
|
sum |
Posted by: dansht - Mar-22-2020, 01:43 PM - Forum: General Coding Help
- Replies (4)
|
 |
i write this ode :
a = [1,2,3]
b = [4,5,6]
ab=[]
for i in range(0, len(a)) :
ab.append(a[i]*b[i])
print(ab)
and get :
[outpu..... More
|
|
|
|