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,970
» Latest member: Seu12Jorge
» Forum threads: 38,731
» Forum posts: 175,552

Full Statistics

Online Users
There are currently 40 online users.
» 0 Member(s) | 34 Guest(s)
AOL, Bing, Google, Mojeek, Apple

Latest Threads
Comparing 2 100GB Drives/...
Forum: General Coding Help
Last Post: snippsat
41 minutes ago
» Replies: 6
» Views: 320
LOST BITCOIN OR USDT?WE H...
Forum: Networking
Last Post: leewang
48 minutes ago
» Replies: 0
» Views: 5
Select Python comment (#)...
Forum: General Coding Help
Last Post: tester_V
4 hours ago
» Replies: 7
» Views: 2,780
looking for help
Forum: Bar
Last Post: PhamMaria
5 hours ago
» Replies: 1
» Views: 1,904
My goal to be hired worki...
Forum: News and Discussions
Last Post: Larz60+
Yesterday, 11:58 PM
» Replies: 1
» Views: 647
what does % stand for in ...
Forum: General Coding Help
Last Post: Gribouillis
Yesterday, 06:49 PM
» Replies: 4
» Views: 2,178
My First App
Forum: Code Review
Last Post: carlbidwell
Yesterday, 10:53 AM
» Replies: 8
» Views: 8,744
Unable to resolve FileNot...
Forum: General Coding Help
Last Post: Pedroski55
Yesterday, 03:54 AM
» Replies: 3
» Views: 635
how to export a dictionar...
Forum: GUI
Last Post: noisefloor
Sep-26-2025, 05:13 PM
» Replies: 4
» Views: 1,131
Is the interpreter that c...
Forum: General Coding Help
Last Post: noisefloor
Sep-26-2025, 01:17 PM
» Replies: 1
» Views: 1,108

 
  Looking for good doc on Scraping coverage algorithms
Posted by: Larz60+ - Jan-05-2019, 03:22 PM - Forum: General Coding Help - No Replies

I'm looking for documents describing (math and/or python) how to query sites for coverage of data.
My example search site for company names:
Conditi..... More

Print this item

  Dictionary python program
Posted by: NLittle17 - Jan-05-2019, 03:04 PM - Forum: General Coding Help - Replies (7)

I’m trying to write a script where I create a dictionary with some initial keys and values. I made some of those values above 10 and some less than 10..... More

Print this item

  Help for my assignment - Object Oriented Programming
Posted by: denizkb - Jan-05-2019, 02:08 PM - Forum: Homework - Replies (5)

So for one of my tasks in my assignment, it is required to create a object oriented program with atleast 4 classes and with atleast 1 superclass. We w..... More

Print this item

  if-elif-else statement not executing
Posted by: laila1a - Jan-05-2019, 02:03 PM - Forum: General Coding Help - Replies (4)

Hi everyone, I'm new to programming so sorry in advance if my mistake is a stupid one.
I am having trouble making my if-elif-else statement execute p..... More

Print this item

  Calling a class inside other class
Posted by: dan789 - Jan-05-2019, 12:50 PM - Forum: General Coding Help - Replies (9)

[python]class Class1:

def __init__(self):
self.atr1 = value1
self.atr2 = value2

def method_1(self):
???

class Class..... More

Print this item

  PyCM 1.8 released: Machine learning library for confusion matrix statistical analysis
Posted by: sepandhaghighi - Jan-05-2019, 12:36 PM - Forum: Data Science - No Replies

PyCM is a multi-class confusion matrix library written in Python that supports both input data vectors and direct matrix, and a proper tool for post-c..... More

Print this item

  Why this simple function doesnt work?
Posted by: blackknite - Jan-05-2019, 11:29 AM - Forum: General Coding Help - Replies (8)

[python]>>> def correct(s):
for c in s:
if c=='1':
c='I'
if c=='5':
c='S'
if c=='0':
..... More

Print this item

  Hands-On Quantum Computing with Python
Posted by: bhagvanarch - Jan-05-2019, 11:23 AM - Forum: Bar - No Replies

I am coauthoring a packt book : Hands-On Quantum Computing with Python. The book will be published around Aug 2019



The book will introduce quan..... More

Print this item

  Create Executable file for Wireless Temperature Sensor
Posted by: jenkins43 - Jan-05-2019, 11:06 AM - Forum: News and Discussions - Replies (2)

Hi, I have worked on a script which receives the data of wirele[url=https://python-forum.io/thread-15126.html]..... More

Print this item

  Issue with a function
Posted by: ebolisa - Jan-05-2019, 11:00 AM - Forum: General Coding Help - Replies (1)

Hi,

No matter what number I select from the below code, the test() function is always fired. Why or, how to fix it?

TIA

[python]#!/usr/bin/py..... More

Print this item

  Tradeback Errors
Posted by: xwerswoodx - Jan-05-2019, 10:33 AM - Forum: General Coding Help - Replies (2)

I am using Python 2.7x to coding some program. I have my own compile system that compile every arrays but the problem is when I do mistake inside any ..... More

Print this item

  Uncanny line of code in Torchat source file
Posted by: pkm - Jan-05-2019, 09:54 AM - Forum: General Coding Help - Replies (2)

I have been sifting through Torchat's sourcecode, which is available on github: https://github.com/prof7bit/TorChat

I don‘t understand one line of ..... More

Print this item

  Strange behaviour VS CODE
Posted by: buran - Jan-05-2019, 09:19 AM - Forum: Bar - Replies (1)

After one of the last updates on VS Code on Linux I noticed strange behavior. Normally I would right-click in the script window and use Run Python Fil..... More

Print this item

  Splitting strings in python?
Posted by: NLittle17 - Jan-05-2019, 08:35 AM - Forum: General Coding Help - Replies (3)

I am trying to learn how to split a word into increments of 2. What I have so far is:

word = "potlucks"
i = 0
print(word[0:2])

OUTPUT:
po

..... More

Print this item

  Would like to input a date variable and determine whether it is within the time range
Posted by: harold - Jan-05-2019, 08:13 AM - Forum: General Coding Help - Replies (3)

Hi, i am new to programming. I would like to create a program which i could input a date variable and if the date variable is not within the range, it..... More

Print this item

  Alternative for input() suitable for servers
Posted by: winnetrie - Jan-05-2019, 03:01 AM - Forum: General Coding Help - Replies (4)

If i use the input() function on my server, the server freezes because it waits for an input.
How can read what i write in the console? I need this ..... More

Print this item

  [split] Python for Everybody 5.2 assignment
Posted by: ramadan2099 - Jan-05-2019, 12:12 AM - Forum: Homework - Replies (3)

I need help too
What do I type in the box when it appears?
[Image: 491467811.png][/u[url=https://python-forum.io/thread-15117.html]..... More

Print this item

  Python for Everybody 3.1 assignment
Posted by: ramadan2099 - Jan-04-2019, 11:58 PM - Forum: Homework - Replies (18)

Hi
I need help please
I tried and did not succeed
[Image: 762712825.png]

Print this item

  Formatting cyrillic characters
Posted by: Truman - Jan-04-2019, 11:47 PM - Forum: General Coding Help - Replies (6)

code
[python]
import requests
txtPage = requests.get("http://www.pythonscraping.com/pages/warandpeace/chapter1-ru.txt")
print(str(txtPage.content,..... More

Print this item

  Syntax Error with if
Posted by: MrNtorees - Jan-04-2019, 10:07 PM - Forum: General Coding Help - Replies (8)

Hello! This is my first ever post. I am really new to Python and programming in general. Only about a week that i try to figure out how to code.

I ..... More

Print this item

  Using for loop in Python lists script?
Posted by: NLittle17 - Jan-04-2019, 10:04 PM - Forum: General Coding Help - Replies (4)

If you have a list like below and now need to print a message for grades over 65 saying “You passed!” and another message saying “Sorry, you failed.” ..... More

Print this item

  How to remove whitespace from a string when .replace and .strip do not work
Posted by: winnetrie - Jan-04-2019, 10:02 PM - Forum: General Coding Help - Replies (7)

I have a python server and when i ask the client the login name to check it is valid with the 1 in the database, for some reason there is always a whi..... More

Print this item

  Error when executing pytesseract to get the text from image
Posted by: bvdinesh - Jan-04-2019, 09:58 PM - Forum: General Coding Help - Replies (3)

Hi Iam having issue geeting text from scanned image using pytesseract. Please help me

Here is the code

[python]
from wand.image import Image as..... More

Print this item

  pyserial-master installed bbut not recognized
Posted by: elwolv1 - Jan-04-2019, 08:37 PM - Forum: General Coding Help - No Replies

hello
Anconda 3.7 installed correctly and functioning
thank for previous help Smile


installed pyserial-master for web site.
installed in..... More

Print this item

  QTabBar Indexing is wrong for right mouse click
Posted by: xenas - Jan-04-2019, 08:25 PM - Forum: GUI - Replies (2)

Hi all, I am trying to grab ahold of the mouse position + right mouse click on QTabBar where it will pops up a message to User if they want to remove ..... More

Print this item

  Tkinter Gui Menu Addition Error
Posted by: whisperquiet - Jan-04-2019, 07:13 PM - Forum: GUI - Replies (2)

Hey guys, I am having an issue with my Python 3.71 Tkinter GUI class that I have been writing. I am relatively new to Python and the present code is a..... More

Print this item

  Python file to slow, how peed up ?
Posted by: Leon - Jan-04-2019, 05:13 PM - Forum: General Coding Help - Replies (4)

Hello,

I've built a Python script to make pictures and cut them in the right size automatic.
Everything works ok only it is very slow.
One pictur..... More

Print this item

  fb data extraction error
Posted by: periraviteja - Jan-04-2019, 04:17 PM - Forum: Web Scraping & Web Development - Replies (1)

Hello Everyone, i'm in learning phase and unable to understand my mistake in retrieving fb data.

kindly help me in identifying my mistake.

Much tha..... More

Print this item

  Problem with reading a path
Posted by: gkiller007 - Jan-04-2019, 03:34 PM - Forum: General Coding Help - Replies (30)

i'm having a problem on reading a path that contains a group of images, i have the paths on my desktop but i can't read them

Can you guys help me?..... More

Print this item

  advice
Posted by: Sonoffox - Jan-04-2019, 01:44 PM - Forum: General Coding Help - Replies (3)

Hi. I'm new to Python and have created some code for a game. In the game, the user has 5 attempts to guess a number chosen at random by the computer...... More

Print this item

  Help with code
Posted by: Snek - Jan-04-2019, 01:00 PM - Forum: General Coding Help - Replies (4)

I'm just trying out Python today and I tried to do some code and I got this error
[python]
print ("no")
myting = "hello world"
print = (myting)
mynem ..... More

Print this item

  Surface thickening VTK
Posted by: mPirs - Jan-04-2019, 09:56 AM - Forum: Homework - Replies (3)

Good morning,

I am very new at Python and my skills are pretty limited. I am asking here for advices/libraries/functions to look at that may help me ..... More

Print this item

  error: (-215:Assertion failed)
Posted by: gkiller007 - Jan-04-2019, 02:20 AM - Forum: General Coding Help - Replies (1)

Hello everyone

I'm getting this error:
[python]
error Traceback (most recent call last)
<ipython-input-18-1..... More

Print this item

  Problems with Equality of Numbers
Posted by: SheeppOSU - Jan-04-2019, 02:02 AM - Forum: General Coding Help - Replies (3)

I have made code to help study multiplication facts but I am having some problems I need fixed. First off and the easiest is that I enter the same num..... More

Print this item

  Cant install gtts module Python 3.4 [SOLVED]
Posted by: cygnus_X1 - Jan-03-2019, 11:06 PM - Forum: Web Scraping & Web Development - Replies (8)

I cant install the google text to speech module (gtts) on Python 3.4.2
OS is Linux Mint 17.3 and using pip3.

Gtts appears to download and install...... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  Comparing 2 100GB Drives/... 41 minutes ago tester_V snippsat General Codin...
  LOST BITCOIN OR USDT?WE H... 48 minutes ago leewang leewang Networking
  Select Python comment (#)... 4 hours ago SpongeB0B tester_V General Codin...
  looking for help 5 hours ago Azdaghost PhamMaria Bar
  My goal to be hired worki... Yesterday, 23:58 GnomeSweetGnome Larz60+ News and Disc...
  what does % stand for in ... Yesterday, 18:49 arbiel Gribouillis General Codin...
  My First App Yesterday, 10:53 BCopeland64 carlbidwell Code Review
  Unable to resolve FileNot... Yesterday, 03:54 llarkin6 Pedroski55 General Codin...
  [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...
Most views
  The best Prog... 577279
  Tutorial Requ... 500356
  Web Scraping ... 440959
  Newbie with P... 384982
  New Users Int... 369324
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+ 12089
buran 8176
snippsat 7369
deanhystad 6896
metulburr 5151
Top referrers
Googlepro 23
metulburr 6
NonEntity 6
python 6
buran 3
Newest members
Seu12Jorge Today
leewang Today
seomelbourneaustralia Today
Jacobjoift Today
PhamMaria Today

User Panel Messages

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