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,960
» Latest member: Xuitar
» Forum threads: 38,729
» Forum posts: 175,532

Full Statistics

Online Users
There are currently 41 online users.
» 0 Member(s) | 35 Guest(s)
Bing, AOL, Google, Applebot, AOL

Latest Threads
pdf file processing: how ...
Forum: General Coding Help
Last Post: Xuitar
13 minutes ago
» Replies: 5
» Views: 4,739
THE MOST TRUSTWORTHY CRYP...
Forum: General Coding Help
Last Post: randydurham
22 minutes ago
» Replies: 0
» Views: 6
Regarding pdf for PCEP an...
Forum: News and Discussions
Last Post: Biks
1 hour ago
» Replies: 1
» Views: 1,424
Using Python to SSH and R...
Forum: Networking
Last Post: SprunkiRetake
7 hours ago
» Replies: 1
» Views: 2,482
My goal to be hired worki...
Forum: News and Discussions
Last Post: GnomeSweetGnome
11 hours ago
» Replies: 0
» Views: 156
extracting data from a us...
Forum: General Coding Help
Last Post: DeaD_EyE
Yesterday, 01:49 PM
» Replies: 2
» Views: 332
how to export a dictionar...
Forum: GUI
Last Post: Pedroski55
Yesterday, 03:45 AM
» Replies: 3
» Views: 394
Is the interpreter that c...
Forum: General Coding Help
Last Post: helendamdam
Yesterday, 01:04 AM
» Replies: 0
» Views: 500
pip install requests does...
Forum: General Coding Help
Last Post: DeaD_EyE
Sep-24-2025, 02:48 PM
» Replies: 10
» Views: 29,686
Creating a Mindmap progra...
Forum: General Coding Help
Last Post: Pedroski55
Sep-23-2025, 12:00 PM
» Replies: 4
» Views: 9,584

 
  if else statements
Posted by: remy - Sep-14-2018, 10:05 AM - Forum: General Coding Help - Replies (8)

[python]class Store:
Day = 1
Money = 5
StoreName = "Lemonade Stand"
StoreCount = 1
StoreCost = 3
StoreProfit = 1.5
..... More

Print this item

  indentation tips
Posted by: Pedroski55 - Sep-14-2018, 09:35 AM - Forum: General Coding Help - Replies (4)

I am not a programmer, that is easy to see. I have a lot of trouble with the indentation. I write little routines using the idle3 environment. I just ..... More

Print this item

  Countryinfo package charmap error
Posted by: mkaru - Sep-14-2018, 09:15 AM - Forum: General Coding Help - Replies (6)

Hi!

Does anyone have any idea why countryinfo package returns the following charmap error message when calling an CountryInfo object?

[python]
..... More

Print this item

  Module not found error
Posted by: minifizikus - Sep-14-2018, 08:09 AM - Forum: Data Science - Replies (1)

I want to run this code: https://matplotlib.org/examples/mplot3d/..._demo.html an I have this error:

from mpl_toolkits.mplot3d import Axes3D..... More

Print this item

  error in Linking two coroutines
Posted by: shankar - Sep-14-2018, 07:52 AM - Forum: General Coding Help - Replies (3)

I couldnt get second output.I donno why
[python]def coroutine_decorator(coroutine_func):
def wrapper(*x,**y):
c = coroutine_func(*x,**y..... More

Print this item

  pipenv install command getting errors on WSL/Ubuntu
Posted by: sheridanrea - Sep-14-2018, 06:40 AM - Forum: General Coding Help - No Replies

I am new to python development. I am using Python 3.5 and have installed pip and pipenv successfully. I am working on a terminal with WSL/Ubuntu. I am..... More

Print this item

  filter out a string
Posted by: tony1812 - Sep-13-2018, 11:20 PM - Forum: General Coding Help - Replies (4)

Hello, I use code like this

cpu_temp2 = os.popen("vcgencmd measure_temp").readline()
to get the cpu temperture of the pi.It ret..... More

Print this item

  Guido van Rossum does not care about the opinion of the community.
Posted by: Kirill_Dubovitskiy - Sep-13-2018, 07:21 PM - Forum: News and Discussions - Replies (12)

Hi all! I reminded Guido that the project is being developed by a large community and he has no right to decide for everyone.
After that he banned me..... More

Print this item

  Copying text from .jpg file to notepad
Posted by: Groot_04 - Sep-13-2018, 05:32 PM - Forum: Bar - Replies (1)

Hi, I am trying to find python code that can accurately copy text from a .jpg file to a .txt file in windows notepad. Also, will the notepad file reta..... More

Print this item

  Three-dimensional Contour Plots
Posted by: minifizikus - Sep-13-2018, 03:57 PM - Forum: Data Science - Replies (1)

Hi. I am beginner in Python programming. I want to do a Three-dimensional Contour Plots, like this: https://jakevdp.github.io/PythonDataScienceHandboo..... More

Print this item

  How to read what's written in THIS specific page ?
Posted by: pfpietro - Sep-13-2018, 03:09 PM - Forum: Web Scraping & Web Development - Replies (1)

Hello everyone.
I've been struggling with this problem for a while. The solution I found was copying and pasting into python manually the contents of..... More

Print this item

  results for sql server query not as expected
Posted by: kat35601 - Sep-13-2018, 02:51 PM - Forum: General Coding Help - Replies (4)

what am I doing wrong and what is with all the letters u??
[python]
for row in cursor.execute('select top 1 * from server.dbo.SalesOrders left joi..... More

Print this item

  ftp callback
Posted by: roberto - Sep-13-2018, 02:39 PM - Forum: Networking - Replies (1)

Hello,
I want to use a callback when upload of a file to ftp . Here is my code:

from ftplib import FTP
def UploadTracker():
print "HELLO"
myft..... More

Print this item

  For loops, strings and printing words with even characters
Posted by: Drone4four - Sep-13-2018, 02:05 PM - Forum: General Coding Help - Replies (8)

I’ve got a string: "Secret agents are super good at staying hidden."

I’m trying to use a for loop to print out only the words with an even number of ..... More

Print this item

  Using for loops and indexing to read and string and print only select words
Posted by: Drone4four - Sep-13-2018, 01:32 PM - Forum: General Coding Help - Replies (3)

I have set out to use a for loop using indexing to print out only the words that start with an s in this sentence: "Secret agents are super good at st..... More

Print this item

  Getting rid of a lib folder
Posted by: Chyu - Sep-13-2018, 12:25 PM - Forum: General Coding Help - No Replies

Hello devs, I'm working on a complex application which uses a static shared Python library (.lib), which works good.
The problem is application still..... More

Print this item

  I am unable to connect Qtable widget in another tab?
Posted by: aditech - Sep-13-2018, 11:58 AM - Forum: GUI - Replies (1)

hi,

I want to connect a signal to QTablewidget from main thread to worker thread ?

But this QTablewidget is in another tab

The worker thread ..... More

Print this item

  Download multiple images with one click
Posted by: andie31 - Sep-13-2018, 10:37 AM - Forum: General Coding Help - No Replies

Hey guys, I've solve my last problem with help from @perfringo ! (https://python-forum.io/Thread-Download-...d=57947#pi..... More

Print this item

  Problem with for loops
Posted by: erfanakbari1 - Sep-13-2018, 10:01 AM - Forum: Homework - Replies (4)

Hey guys , I have started python developer programming course since 1 week ago and now i'm facing a problem with advanced for loops section I was wond..... More

Print this item

  Error message wrong???
Posted by: Transylvania - Sep-13-2018, 09:07 AM - Forum: General Coding Help - Replies (2)

First of all, my English is poor. So please forgive me.

I was coding with python3. Specific version → [b]Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 20..... More

Print this item

  Getting decode error.
Posted by: shankar - Sep-13-2018, 07:23 AM - Forum: General Coding Help - Replies (8)

[python]import sys
import os
import subprocess
import inspect

def run_process(cmd_args):
with subprocess.Popen(cmd_args) as p:
..... More

Print this item

  Selenium opening pdf in new window
Posted by: test - Sep-13-2018, 06:53 AM - Forum: Web Scraping & Web Development - Replies (6)

Hello!
I've been trying to use Selenium as i am unable to figure requests out (kindly help me with requests ..... More

Print this item

  Try and Except Help
Posted by: samijoe - Sep-13-2018, 06:14 AM - Forum: General Coding Help - Replies (2)

I need your help.

I have edited the following code which I would like to do the following:

1. Continuously Prompt user to input until they ente..... More

Print this item

  What's the difference between pip and pip3?
Posted by: magic - Sep-13-2018, 04:42 AM - Forum: General Coding Help - Replies (5)

Pip is for python version less than 3.
and pip3 is used when you want to install packages for python version 3 or higher.
Is this correct?
**huh*..... More

Print this item

  Prompting user for number, reading number, squaring it and returning result
Posted by: JHPythonLearner - Sep-12-2018, 10:57 PM - Forum: General Coding Help - Replies (5)

Hello.
What would be the code for a program that prompts the user for a number, reads that number, squares that number, and returns the resulting num..... More

Print this item

  No Output
Posted by: syedsaa89 - Sep-12-2018, 10:26 PM - Forum: General Coding Help - Replies (9)

Can someone help me with the following code? I am not getting any output

[python]
from datetime import datetime

import json

import StringIO..... More

Print this item

  Web application with google maps api
Posted by: jomonetta - Sep-12-2018, 09:26 PM - Forum: Web Scraping & Web Development - Replies (1)

Greatings. I am python beginner. I have already made a python application that gives some outputs. What I want is transforming this python application..... More

Print this item

  Easier framework
Posted by: eduardoforo - Sep-12-2018, 06:04 PM - Forum: Game Development - Replies (5)

Hi. I've been programming for 2 years with python at the amateur level.
I want to develop simple educational games for children.
What will be easier..... More

Print this item

  Corporate It & Security Team Seeks System Integration Engineer (F/M) at moovel Group
Posted by: djangojobs.net - Sep-12-2018, 05:54 PM - Forum: Jobs - Replies (1)

Corporate It & Security Team Seeks System Integration Engineer (F/M) at moovel Group GmbH

djangojobs.net/jobs/795/corporate-it-security-team-seeks-..... More

Print this item

  Setting up virtual environment
Posted by: tjnichols - Sep-12-2018, 04:30 PM - Forum: Web Scraping & Web Development - Replies (6)

I am trying to setup a virtual environment. I don't see anything when I run this code. No folders are created. I just don't know if there should be so..... More

Print this item

  rtlsdr depenancy path on windows 10
Posted by: kiyoshi7 - Sep-12-2018, 03:54 PM - Forum: General Coding Help - Replies (2)

Hi, I'm trying to get rtlsdr(GitHub), but I keep getting this error:
[error]
Traceback (most recent ca..... More

Print this item

  Login to web application
Posted by: malinowy - Sep-12-2018, 10:47 AM - Forum: Web Scraping & Web Development - Replies (1)

Hello,

I am using many environments of an application in my work. Each environment has a different URL.

I am using the webbrowser module to qu..... More

Print this item

  What for a file that prints nothing
Posted by: sylas - Sep-12-2018, 07:04 AM - Forum: General Coding Help - Replies (1)

Hi all ! I have this file that prints nothing. How to modify in order to see something ??
[python]class _Getch:
"""Gets a single character from ..... More

Print this item

  Using static methods for library?
Posted by: giu88 - Sep-12-2018, 06:55 AM - Forum: General Coding Help - Replies (4)

Hello everybody,

I need to create a library of algorithms. I do no want to instanciate an object of the class everytime, i just would like to call..... More

Print this item

  selenium.wait_for_condition equivalent in Python bindings for WebDriver
Posted by: gracylayla - Sep-12-2018, 06:36 AM - Forum: Web Scraping & Web Development - Replies (1)

Currently, it isn’t possible to use wait for condition Currently it isn’t possible to use wait_for_condition with WebDriver. The ..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  pdf file processing: how ... 13 minutes ago Pavel_47 Xuitar General Codin...
  THE MOST TRUSTWORTHY CRYP... 22 minutes ago randydurham randydurham General Codin...
  Regarding pdf for PCEP an... 1 hour ago P212 Biks News and Disc...
  Using Python to SSH and R... 7 hours ago justaguy SprunkiRetake Networking
  My goal to be hired worki... 11 hours ago GnomeSweetGnome GnomeSweetGnome News and Disc...
  extracting data from a us... Yesterday, 13:49 Perry DeaD_EyE General Codin...
  [Tkinter] how to export a... Yesterday, 03:45 RonR Pedroski55 GUI
  Is the interpreter that c... Yesterday, 01:04 helendamdam helendamdam General Codin...
  pip install requests does... 09-24, 14:48 misodca DeaD_EyE General Codin...
  Creating a Mindmap progra... 09-23, 12:00 J_Miller Pedroski55 General Codin...
  IBKR Purchasing code issu... 09-23, 09:08 compuman145 compuman145 General Codin...
Most views
  The best Prog... 576964
  Tutorial Requ... 499640
  Web Scraping ... 440725
  Newbie with P... 384703
  New Users Int... 368727
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+ 12088
buran 8176
snippsat 7367
deanhystad 6895
metulburr 5151
Top referrers
Googlepro 23
metulburr 6
NonEntity 6
python 6
buran 3
Newest members
Xuitar Today
randydurham Today
SprunkiRetake Today
GnomeSweetGnome Yesterday
alxpetrovo2272 Yesterday

User Panel Messages

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