| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 20,310
» Latest member: QABOB
» Forum threads: 38,801
» Forum posts: 175,923
Full Statistics
|
| Online Users |
There are currently 50 online users. » 0 Member(s) | 47 Guest(s) Bing, Google, AOL
|
| Latest Threads |
No new line from print in...
Forum: General Coding Help
Last Post: noisefloor
48 minutes ago
» Replies: 11
» Views: 286
|
Python compiler
Forum: General Coding Help
Last Post: noisefloor
1 hour ago
» Replies: 1
» Views: 62
|
Trading Risk management s...
Forum: Code sharing
Last Post: NeoQuant
Yesterday, 07:34 PM
» Replies: 5
» Views: 87
|
Standard template Data En...
Forum: Code Review
Last Post: Hosthubac
Yesterday, 05:51 PM
» Replies: 0
» Views: 41
|
Python Online Compiler
Forum: News and Discussions
Last Post: ichsanputr
Yesterday, 07:39 AM
» Replies: 3
» Views: 11,116
|
Python is not working on ...
Forum: General Coding Help
Last Post: noisefloor
Nov-28-2025, 10:44 AM
» Replies: 4
» Views: 201
|
Help with Serial.write in...
Forum: General Coding Help
Last Post: Larz60+
Nov-28-2025, 04:44 AM
» Replies: 8
» Views: 729
|
Can I develop a live vide...
Forum: Web Scraping & Web Development
Last Post: mamta25
Nov-27-2025, 04:48 AM
» Replies: 6
» Views: 7,836
|
silent deployment Python ...
Forum: News and Discussions
Last Post: Larz60+
Nov-26-2025, 09:58 PM
» Replies: 3
» Views: 202
|
Proposal for PEP
Forum: News and Discussions
Last Post: Gribouillis
Nov-26-2025, 03:53 PM
» Replies: 1
» Views: 163
|
|
|
| What's wrong |
|
Posted by: kinngu - Aug-04-2018, 03:15 PM - Forum: General Coding Help
- Replies (1)
|
 |
What's wrong with this code?
[python]n = int(input())
m = [int(i) for i in input().split()]
l = []
for i in range(n):
if m[i] != -1:
..... More
|
|
|
| ^C is 3 |
|
Posted by: Skaperen - Aug-04-2018, 04:49 AM - Forum: General Coding Help
- Replies (3)
|
 |
if you have "^C", what Python code can give the value 3 for it? ord('\n') gives 10, but ord('^C') does not give 3. this is because len("^C") is 2 a..... More
|
|
|
| DataTransferApp |
|
Posted by: mhaveliwala82 - Aug-03-2018, 09:34 PM - Forum: GUI
- Replies (1)
|
 |
Hi, I am a new in python, I am trying to make a program for data transfer and i am trying to detect all the present drives and external drives attache..... More
|
|
|
| PostgreSQL announcement |
|
Posted by: Larz60+ - Aug-03-2018, 01:55 AM - Forum: News and Discussions
- No Replies
|
 |
As a previous long term user of Oracle, which I think is a wonderful relational DBMS, but too costly. I thought this press release was interesting. I ..... More
|
|
|
| rewriting my C library for Python |
|
Posted by: Skaperen - Aug-03-2018, 01:51 AM - Forum: Bar
- No Replies
|
 |
i want to rewrite my C library so that functions that make sense for use in Python that are not easy to use directly via the ctypes module are reorgan..... More
|
|
|
| Deleting White from Bitmap |
|
Posted by: Anysja - Aug-02-2018, 05:14 PM - Forum: GUI
- Replies (8)
|
 |
I have found a lot of code that makes the white in a bitmap transparent. However, for my program I need the white to be removed completely. How do I s..... More
|
|
|
| candy crush game |
|
Posted by: asaa12345 - Aug-02-2018, 04:46 PM - Forum: Game Development
- Replies (4)
|
 |
hello i was previously trying to make a candy crush game in python here is the code, for some reason it is not working properly.
[python]def initia..... More
|
|
|
|