Python Forum
Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 19,977
» Latest member: hoki1881
» Forum threads: 38,732
» Forum posts: 175,563

Full Statistics

Online Users
There are currently 43 online users.
» 0 Member(s) | 33 Guest(s)
Bing, Google, AOL, Applebot, Facebook Dev, AOL

Latest Threads
Integer Factorization Too...
Forum: Code sharing
Last Post: buran
11 hours ago
» Replies: 2
» Views: 231
My goal to be hired worki...
Forum: News and Discussions
Last Post: GnomeSweetGnome
Today, 12:21 AM
» Replies: 2
» Views: 862
Unable to resolve FileNot...
Forum: General Coding Help
Last Post: noisefloor
Yesterday, 05:45 PM
» Replies: 6
» Views: 909
Comparing 2 100GB Drives/...
Forum: General Coding Help
Last Post: snippsat
Yesterday, 12:59 PM
» Replies: 8
» Views: 602
Select Python comment (#)...
Forum: General Coding Help
Last Post: tester_V
Sep-28-2025, 06:39 PM
» Replies: 7
» Views: 2,950
what does % stand for in ...
Forum: General Coding Help
Last Post: Gribouillis
Sep-27-2025, 06:49 PM
» Replies: 4
» Views: 2,365
My First App
Forum: Code Review
Last Post: carlbidwell
Sep-27-2025, 10:53 AM
» Replies: 8
» Views: 8,944
how to export a dictionar...
Forum: GUI
Last Post: noisefloor
Sep-26-2025, 05:13 PM
» Replies: 4
» Views: 1,371
Is the interpreter that c...
Forum: General Coding Help
Last Post: noisefloor
Sep-26-2025, 01:17 PM
» Replies: 1
» Views: 1,283
pdf file processing: how ...
Forum: General Coding Help
Last Post: noisefloor
Sep-26-2025, 01:14 PM
» Replies: 6
» Views: 5,612

 
  Points
Posted by: Gluon137 - Apr-11-2019, 06:58 PM - Forum: General Coding Help - Replies (4)

Hey everyone,
I just started coding python. I'm using jython and trying to create voronoi diagrams. For some reason I do not understand, my main loop..... More

Print this item

  Sorting a copied list is also sorting the original list ?
Posted by: SN_YAZER - Apr-11-2019, 04:49 PM - Forum: General Coding Help - Replies (3)

Hello, Big Grin
I would need your help to sort the copy of a list without modifying the initial list. Huh

for example, when I create a co..... More

Print this item

  Problem with executing 2 .py files
Posted by: PardodeCela - Apr-11-2019, 03:58 PM - Forum: General Coding Help - Replies (1)

I'm trying to run lector.py firstly and gmail.py in second place, but when I try it, the programm finishes at lector.py and don't continue running. I'..... More

Print this item

  Why is this not working?
Posted by: gcryall - Apr-11-2019, 02:23 PM - Forum: GUI - Replies (2)

[python]
from tkinter import *

class TheEarnings(Frame):

def __init__(self, root=None):
Frame.__init__(self)
self.root = root
..... More

Print this item

  Using Pypdf2 write a string to a pdf file
Posted by: Pedroski55 - Apr-11-2019, 01:55 PM - Forum: General Coding Help - Replies (6)

I will read 130+ excel files in as lines of strings in Python. I want to write each line to a pdf. Each excel file is just 1 A5 landscape sheet. I can..... More

Print this item

  Turtle Graphics Card Values in a List
Posted by: Muzz - Apr-11-2019, 12:55 PM - Forum: Homework - No Replies

Hi everyone,

New to python and trying to figure out how to make the numbers on my cards ive drawn move on to the the next value in a list every tim..... More

Print this item

  Need help; iris-train
Posted by: Karin - Apr-11-2019, 09:42 AM - Forum: Data Science - Replies (2)

I'm a beginner of machine learning and now learning scikit-learn using iris analysis.

My code is here...

[python]
import pandas as pd
from skl..... More

Print this item

  print: Tips and tricks
Posted by: microphone_head - Apr-11-2019, 09:33 AM - Forum: News and Discussions - Replies (12)

Hi all.

I found that when I run the print command with "\b" I can produce a tick symbol.

Does anyone have any other tips they would like to shar..... More

Print this item

  Beginner Level - Name Error
Posted by: Aniket - Apr-11-2019, 07:19 AM - Forum: General Coding Help - Replies (11)

Hello Everyone,

I am new to Python and have recently started working on it.

Please help me resolve the error

My code is

[python]
def he..... More

Print this item

  Error in Tkinter
Posted by: moste - Apr-11-2019, 06:38 AM - Forum: GUI - Replies (6)

Hello guys, i am trying to create a programm with tkinter (for first time) and i got the follow error in one part of my code:

[python]
y = StringV..... More

Print this item

  python idle turtle graphics help
Posted by: jojo - Apr-11-2019, 05:24 AM - Forum: Homework - Replies (5)

needing help with this assignment

Im working on a python assignment. The end result of the assignment is to produce a program of the game Solitair..... More

Print this item

  pmdown.py help!
Posted by: chongjasmine - Apr-11-2019, 04:54 AM - Forum: General Coding Help - Replies (2)

I find a file known as pmdown.py that can convert pocketmags html 5 reader file to pdf but I don't know how to use it. Help appreciated!

Print this item

  add search bar = search for input in all computer directory
Posted by: francisco_neves2020 - Apr-11-2019, 01:40 AM - Forum: GUI - Replies (15)

Hi, it is possible in tkinter to code the searchbar for a search in all the computer for a given input? Can provide some code?
I know the code for sp..... More

Print this item

  Read Save RadioButtons from Database in Python Flask Webpage
Posted by: Gary8877 - Apr-11-2019, 12:33 AM - Forum: Web Scraping & Web Development - No Replies

I am new to Python, Flask & HTML. I have a SQL Server table Products that contains DeptManager, Product & SellStatus (which could be yes, no or not su..... More

Print this item

  Intializing return value to 0
Posted by: adam10e10 - Apr-11-2019, 12:13 AM - Forum: Homework - Replies (2)

Hey guys, the problem is asking the following:

Use the Design Recipe to write a function called running_average that repeatedly asks the user to i..... More

Print this item

  How to set turns playing tictactoe?
Posted by: Mariano - Apr-10-2019, 10:41 PM - Forum: GUI - Replies (1)

I don't know how to set turns: human Vs computer. Based on my code: the computer's movement needs the human to click on any button.


[python]# -*-..... More

Print this item

  Implementing a recursive algorithm for tree.
Posted by: Negativ3 - Apr-10-2019, 10:01 PM - Forum: General Coding Help - Replies (3)

I'm trying to solve
[quote="https://www.codechef.com/APRIL19B/problems/SUBREM]question"]You are given a rooted tree with N nodes (numbered 1 through ..... More

Print this item

  Blockspring Trello export to Google Sheet
Posted by: Shafla - Apr-10-2019, 09:21 PM - Forum: General Coding Help - No Replies

I have a Trello board synced with a google sheet. I want to start adding my own code. Specifically i would like to export each checklist item to its o..... More

Print this item

  Create a set of checkbutton widgets and refer to every one of them individually?
Posted by: Mariano - Apr-10-2019, 07:13 PM - Forum: GUI - Replies (1)

I am a teacher. Using Tkinter and Openpyxl I need to code a graphical user interface so I could click on a student's name “linked” with a checkbutton ..... More

Print this item

  Iteration with 2 Variables
Posted by: punksnotdead - Apr-10-2019, 04:54 PM - Forum: General Coding Help - Replies (8)

Hello, This is my first attempt at writing a program using Python and I'm a bit stuck.
I'd like to write the sequence shown in the comments to an Exc..... More

Print this item

  Need help getting the output
Posted by: aankrose - Apr-10-2019, 04:41 PM - Forum: General Coding Help - Replies (10)

[python]
S = 5
t=[]
for i in range(1,S+1):
t.append(i)
for j in range(0,S):
t[j] = '/'
print(''.join(str(e) for e in t))
for i..... More

Print this item

  Running python file without python
Posted by: mzmingle - Apr-10-2019, 03:24 PM - Forum: General Coding Help - Replies (2)

Hi! I've found out that it's possible to turn a python file into an .exe file, but presumably that's only if you're using no external modules. I have ..... More

Print this item

  How to delete column if entire column values are "nan"
Posted by: Sri - Apr-10-2019, 02:17 PM - Forum: Data Science - Replies (4)

Hi,
I have read csv file in dataframe, and I want to delete column if entire column values are equal to "nan"


data.csv:

[python]Name Rank ..... More

Print this item

  Parsing Attached .MSG Files with Python3
Posted by: ericl42 - Apr-10-2019, 02:08 PM - Forum: General Coding Help - Replies (1)

I'm trying to monitor a phishing inbox that could receive both normal emails (i.e. HTML/text based with potential attachments) as well as emails that ..... More

Print this item

  tuple index out of range
Posted by: delta1071 - Apr-10-2019, 01:54 PM - Forum: General Coding Help - Replies (3)

Hello
I'm a coding newbie and first-time visitor to this forum. The script below throws the following error on execution:
[output]
File "detect.py", l..... More

Print this item

  Mean of array
Posted by: Monti - Apr-10-2019, 01:06 PM - Forum: Homework - Replies (1)

Hi all,
i am new here and hope i can find some help.

i have a two dimensional array. in the first column is the distance in mm and in the second c..... More

Print this item

  Odd Behavior with Read Posts
Posted by: ichabod801 - Apr-10-2019, 12:46 PM - Forum: Board - Replies (7)

I'm seeing some odd behavior with read posts this morning. First, this thre[url=https://python-forum.io/thread-17424.html]..... More

Print this item

  Looking for Software for creating highly detailed GUI
Posted by: moo5e - Apr-10-2019, 11:34 AM - Forum: News and Discussions - Replies (1)

Hello,
I'm attempting to build a software with high quality user interface(GUI) and 3d visualisation of data. I'm looking for a framework that will o..... More

Print this item

  Print a Graph (packages)
Posted by: dervast - Apr-10-2019, 11:34 AM - Forum: Data Science - Replies (1)

Hi,
I have as input a matrix that I have created by collecting sequences together. Not all sequences are equal in length and thus I have appended zer..... More

Print this item

  Script Conversion 2.7 to 3 (sockets)
Posted by: Pumpernickel - Apr-10-2019, 10:17 AM - Forum: Networking - Replies (1)

Hey all,

I'm trying to convert a script written in python2.7 to python3.
The first hurdle is how byte strings are handled between the two, which I..... More

Print this item

  Water flow sensor and Servo Motor wont run at the same time
Posted by: baff_paff - Apr-10-2019, 09:55 AM - Forum: Homework - Replies (1)

Hei, we have a project going on at moment where we have to use a flowmeter sensor and a servo motor. The main objective of the servo motor is to open ..... More

Print this item

  create and insert a new frame on top of another frame
Posted by: atlass218 - Apr-10-2019, 07:58 AM - Forum: GUI - Replies (4)

I have an idea and I want to realize it on my little project in tkinter with python 3.6
I'd like to be told how I'm going to start doing this

I wa..... More

Print this item

  Append to Array Fails
Posted by: Jeff - Apr-10-2019, 07:39 AM - Forum: General Coding Help - Replies (1)

The Script that I will post will show 2 different results Function - def Report_Results_Fail(): -- Fails Function - def Report_Results_Ok(): -- is OK..... More

Print this item

  parsing complex text file
Posted by: anna - Apr-10-2019, 07:35 AM - Forum: General Coding Help - Replies (1)

Hi All,

I have huge text file(sample is given below), I have not tried yet as not able find the way, suggestion required. How to proceed and which ..... More

Print this item

  Pygame deleting list index.
Posted by: TheHumbleIdiot - Apr-10-2019, 04:53 AM - Forum: Game Development - Replies (4)

I'm working on this space invaders game and the tail end of the logic is confusing me. There is a nested loop in the conclusion.
[python]i = 0
w..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  Integer Factorization Too... 11 hours ago fosuwxb buran Code sharing
  My goal to be hired worki... Today, 00:21 GnomeSweetGnome GnomeSweetGnome News and Disc...
  Unable to resolve FileNot... Yesterday, 17:45 llarkin6 noisefloor General Codin...
  Comparing 2 100GB Drives/... Yesterday, 12:59 tester_V snippsat General Codin...
  Select Python comment (#)... 09-28, 18:39 SpongeB0B tester_V General Codin...
  what does % stand for in ... 09-27, 18:49 arbiel Gribouillis General Codin...
  My First App 09-27, 10:53 BCopeland64 carlbidwell Code Review
  [Tkinter] how to export a... 09-26, 17:13 RonR noisefloor GUI
  Is the interpreter that c... 09-26, 13:17 helendamdam noisefloor General Codin...
  pdf file processing: how ... 09-26, 13:14 Pavel_47 noisefloor General Codin...
  Regarding pdf for PCEP an... 09-26, 09:50 P212 Biks News and Disc...
Most views
  The best Prog... 577371
  Tutorial Requ... 500762
  Web Scraping ... 441026
  Newbie with P... 385071
  New Users Int... 369599
Most reputation
buran 581
snippsat 508
Larz60+ 452
Gribouillis 362
deanhystad 327
Most replies
  New Users Int... 451
  [book] Variou... 188
  CKEditor / Ri... 100
  moving from t... 95
  Free keys and... 91
Top posters
Larz60+ 12091
buran 8178
snippsat 7370
deanhystad 6897
metulburr 5151
Top referrers
Googlepro 23
metulburr 6
NonEntity 6
python 6
buran 3
Newest members
hoki1881 Today
stephaniehendrix Today
Schirag Today
Jacobjoift Today
sophielane Yesterday

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020