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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 20,299
» Latest member: matt
» Forum threads: 38,796
» Forum posts: 175,891

Full Statistics

Online Users
There are currently 90 online users.
» 1 Member(s) | 87 Guest(s)
Bing, Google, kshahzad1985

Latest Threads
Proposal for PEP
Forum: News and Discussions
Last Post: matt
41 minutes ago
» Replies: 0
» Views: 7
My regex function is not ...
Forum: General Coding Help
Last Post: perfringo
6 hours ago
» Replies: 3
» Views: 116
silent deployment Python ...
Forum: News and Discussions
Last Post: Bummibaer
6 hours ago
» Replies: 2
» Views: 82
best way to learn python
Forum: News and Discussions
Last Post: ichsanputr
10 hours ago
» Replies: 6
» Views: 3,184
data fetching for indian ...
Forum: Web Scraping & Web Development
Last Post: Pedroski55
Yesterday, 02:50 AM
» Replies: 6
» Views: 250
PyQt5 - Get a parameter f...
Forum: GUI
Last Post: deanhystad
Nov-24-2025, 02:18 PM
» Replies: 5
» Views: 139
Brazil Python Help to aut...
Forum: Jobs
Last Post: MileHigh303
Nov-21-2025, 08:30 PM
» Replies: 0
» Views: 94
My goal to be hired worki...
Forum: News and Discussions
Last Post: mamta25
Nov-21-2025, 06:15 AM
» Replies: 4
» Views: 1,528
[SOLVED] [BeautifulSoup] ...
Forum: Web Scraping & Web Development
Last Post: Winfried
Nov-20-2025, 02:10 PM
» Replies: 2
» Views: 180
How to Implement Real-Tim...
Forum: Web Scraping & Web Development
Last Post: ankitsharma32
Nov-20-2025, 06:48 AM
» Replies: 0
» Views: 84

 
  Python 3.6
Posted by: Skaperen - Jul-03-2019, 06:51 AM - Forum: Bar - Replies (11)

i have upgraded from Ubuntu 16.04 LTS to Xubuntu 18.04 LTS. now i have Python 3.6.8.

Print this item

  Quick tips and tricks for python
Posted by: juliopa - Jul-03-2019, 04:23 AM - Forum: News and Discussions - Replies (2)

What are some easy and quick tricks that you learned through coding that a beginner like myself should be aware of to not have to make easy mistakes?

Print this item

  Where is usually located the python interpreter on android devices?
Posted by: anddontyoucomebacknomore - Jul-03-2019, 03:45 AM - Forum: General Coding Help - Replies (1)

I need to locate it to deamonize an script. Android has no "/usr" folder unlike most linux. I downloaded Python 3 from termux app and use qpython as I..... More

Print this item

  indefinite loop
Posted by: Johnygo - Jul-03-2019, 03:03 AM - Forum: General Coding Help - Replies (3)

Hello everyone
I am new to Python and I am learning with a book I bought. In this book there are some do it yourself questions which are much more co..... More

Print this item

  [cryptography.io] How to convert DER signature to ECDSA
Posted by: fstefanov - Jul-02-2019, 09:27 PM - Forum: General Coding Help - Replies (1)

Hello all,

According to cryptography.io documentation the signature for
cryptography.hazmat.primitives.asymmetric.ec.ECDSA
is a bytes object, who..... More

Print this item

  configuring python at build time
Posted by: Skaperen - Jul-02-2019, 08:46 PM - Forum: News and Discussions - Replies (2)

does Python have a build time option to use long double instead of just double for its float type? Pike does and it has been convenient.

Print this item

  Store a product/item in a inventory program
Posted by: viktoria_linn - Jul-02-2019, 08:23 PM - Forum: General Coding Help - Replies (1)

Hi!

I'm a new programmer and new to the forum :) and right now I am working on a very simple cash register program. I was wondering if anyone has got..... More

Print this item

  need help with floodfill
Posted by: rfdv - Jul-02-2019, 08:21 PM - Forum: Homework - Replies (1)

Hello, i'm having some difficulty at a college task and I wonder if you can help me. It is the realization of a floodfill algorithm in python 3 using ..... More

Print this item

  How to add a widget to a QtWindow after it has been created
Posted by: LavaCreeperKing - Jul-02-2019, 05:01 PM - Forum: GUI - Replies (4)

I think I asked this before, but I was unable to get an answer. I need to know how I can add widgets to my window after it has been created.
[python]..... More

Print this item

  web scraping to csv formatting problems
Posted by: bluethundr - Jul-02-2019, 04:31 PM - Forum: Web Scraping & Web Development - Replies (4)

Hello,

I am trying to scrape a web page and send the result to CSV. I am able to get the content I want in the CSV. However, the content is being rep..... More

Print this item

  How to make mmo with python?
Posted by: Aresofthesea - Jul-02-2019, 04:17 PM - Forum: News and Discussions - Replies (6)

I want to make an MMO with python, but I don't know how. Please direct me to a tutorial. Thank you.

Print this item

  [Tkinter] Recommended book/online resource?
Posted by: Winfried - Jul-02-2019, 03:58 PM - Forum: GUI - Replies (3)

Hello,

I need to learn how to write Python apps with GUIs.

Apparently, Tcl/Tk through Tkinter seems easiest since it's already part of Python.
..... More

Print this item

  How can I save Python dictionaries in Matlab?
Posted by: jlostinco - Jul-02-2019, 03:45 PM - Forum: General Coding Help - Replies (1)

What is the simplest way to send complex data from Matlab to Python? I have a pre-written script in Python that uses dictionaries as the base data for..... More

Print this item

  Matplotlib problem
Posted by: ift38375 - Jul-02-2019, 02:54 PM - Forum: General Coding Help - No Replies

This is my source code for Bar graph through Pyplot :
[python]
import matplotlib.pyplot as plt

x = [2,4,6,8,10]
y=[3,9,11,2,6]
plt.bar(x,y,labe..... More

Print this item

  Debugging in VS code
Posted by: kw42chan - Jul-02-2019, 02:06 PM - Forum: General Coding Help - No Replies

hi all,

When i tried to debug in VS code for a py file which involves reading csv with pandas, VS code said cwd needs to be set in launch.json. How..... More

Print this item

  [split] Automate the boring stuff, inserting commas in list
Posted by: srikanth - Jul-02-2019, 01:31 PM - Forum: General Coding Help - Replies (1)

[python]
def sri(z):
... for i in range(len(z)):
... if i<len(z)-1:
... y=z[i]+','
... else:
... y='and ' + z[-1]
..... More

Print this item

  Transform simplified dictionary to nested dictionaries
Posted by: bhojendra - Jul-02-2019, 01:18 PM - Forum: General Coding Help - Replies (1)

Today, I was trying to solve a question in which the data is structured like:
[python]
{
"bar": [
{
"id": 1,
"foo_id": 1,
..... More

Print this item

  Receiving Werkzeug. exception. Bad Request error when using GET with an endpoint
Posted by: robogeek - Jul-02-2019, 01:04 PM - Forum: Web Scraping & Web Development - No Replies

Hello,

I was trying to implement an API using Python, and flask to help myself learn and practice REST.

The idea was to receive a HTTP POST wi..... More

Print this item

  Getting Name Error: Name not defined
Posted by: AAD - Jul-02-2019, 12:39 PM - Forum: General Coding Help - Replies (2)

Hi,

I am a new user, just at very beginning. I am trying to write a simple function but I get the name error saying that I have not defined a varia..... More

Print this item

  Trying to write an app to connect to a mysql DB
Posted by: gizmo - Jul-02-2019, 12:00 PM - Forum: General Coding Help - No Replies

Hi all, I just began my journey with python, and I'm trying to make an app to connect and manage some data.

I have several questions though.

1...... More

Print this item

  CNN, dropout error
Posted by: habib - Jul-02-2019, 10:45 AM - Forum: Data Science - Replies (4)

using python3 at ubuntu.

Reciving error constantly at each cnn code run.

WARNING:tensorflow:From /home/habib/.virtualenvs/kerasTF/lib/python3.6/..... More

Print this item

  Pyinstaller error
Posted by: vipinv23 - Jul-02-2019, 09:37 AM - Forum: News and Discussions - Replies (3)

Hello,

I am using pyinstaller to generate exe from py file but i am getting following error:


"
Traceback (most recent call last):
File "c:..... More

Print this item

  Text after push button
Posted by: chano - Jul-02-2019, 09:07 AM - Forum: GUI - Replies (13)

Hello All,
can after push button to see text on display- ,(bоttom) "please wait",for 30 secоnds,is it possible?
Thank you

Print this item

  What am I doing wrong? New to Python
Posted by: Stthmc_1995 - Jul-02-2019, 03:50 AM - Forum: General Coding Help - Replies (6)

Hi everyone I have recently been introduced to Python and I am attempting some activities for beginners but I have become stuck on one part.
Basical..... More

Print this item

  [split] No Error, and No Output
Posted by: vishal2894 - Jul-02-2019, 02:05 AM - Forum: General Coding Help - Replies (1)

Hi Guys I am a beginner with Python, I am trying to execute a code, it says no error. But I am not getting the expected output. Can someone please hel..... More

Print this item

  display graph in columns and rows
Posted by: william888 - Jul-02-2019, 01:38 AM - Forum: Data Science - Replies (1)

Hi,
[python]
for col in df[['age','num1','num2','num3','num4']]:
grid = sns.FacetGrid(data=df,hue='predictor').map(sns.kdeplot,col)
grid.a..... More

Print this item

  DOWNLOAD DACTILAR FOOTPRINT SENSOR TEMPLATES
Posted by: jorge29 - Jul-02-2019, 12:18 AM - Forum: Data Science - No Replies

I have a fingerprint module installed in a school.
They require to place a second module.
I already registered the traces of the teachers in the fir..... More

Print this item

  Create XML from dictionary
Posted by: pygrrrl - Jul-01-2019, 11:57 PM - Forum: General Coding Help - Replies (7)

Hi all,

I have a dictionary that is grouped by terms. The terms then has a list of users associated with it. The following is the dictionary:

..... More

Print this item

  ImportError: cannot import name 'gphoto2' from 'sh'
Posted by: evvvonder - Jul-01-2019, 10:29 PM - Forum: General Coding Help - Replies (1)

I'm trying to run a python script that previously worked on a new raspberry pi.

[python]
## added scheduled on the minute instead of sleep time
..... More

Print this item

  external refs by libraries loaded with cdll
Posted by: caldodge - Jul-01-2019, 10:26 PM - Forum: General Coding Help - No Replies

I'm trying to debug a runtime issue. I have a file "market.c", compiled to a shared library "market.so". It uses the glib2 call g_direct_equal exten..... More

Print this item

  Writing the Path to a file properly
Posted by: dcw9996 - Jul-01-2019, 10:26 PM - Forum: General Coding Help - Replies (2)

Hello,

I am 64 years old but new to Python and brand new to this forum. If I due something wrong please let me know.

I purchased a book on pyth..... More

Print this item

  Applying Function With If
Posted by: ab0217 - Jul-01-2019, 09:07 PM - Forum: Data Science - Replies (8)

I created a function with if statement to know which table to query and return a value to my dataframe, but I am getting truth value of series is ambi..... More

Print this item

  Looping JSON data
Posted by: graham23s - Jul-01-2019, 08:04 PM - Forum: General Coding Help - Replies (1)

Hi Guys,

I'm trying to loop some JSON which i have created using PHP, sample:

[python]
{
"action": [
"val1|0|0|val4",
"v..... More

Print this item

  Run jupyter notbook in background
Posted by: metulburr - Jul-01-2019, 06:25 PM - Forum: Data Science - Replies (4)

OS Ubuntu linux

I am trying to get jupyter notebook to run in the background.

I first tried:

jupyter notebook &
but it ignor..... More

Print this item

  For loop that prints four subplots
Posted by: dervast - Jul-01-2019, 04:52 PM - Forum: Data Science - Replies (4)

Hi all,
I am new to the python world and I was able to make some progress with my code. I have a relative large dataframe with around of 400+ rows. W..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  Proposal for PEP 41 minutes ago matt matt News and Disc...
  My regex function is not ... 6 hours ago Moltar1997 perfringo General Codin...
  silent deployment Python ... 6 hours ago Bummibaer Bummibaer News and Disc...
  best way to learn python 10 hours ago dutch ichsanputr News and Disc...
  data fetching for indian ... Yesterday, 02:50 drakhsin Pedroski55 Web Scraping ...
  PyQt5 - Get a parameter f... 11-24, 14:18 Ninja2112 deanhystad GUI
  Brazil Python Help to aut... 11-21, 20:30 MileHigh303 MileHigh303 Jobs
  My goal to be hired worki... 11-21, 06:15 GnomeSweetGnome mamta25 News and Disc...
  [SOLVED] [BeautifulSoup] ... 11-20, 14:10 Winfried Winfried Web Scraping ...
  How to Implement Real-Tim... 11-20, 06:48 ankitsharma32 ankitsharma32 Web Scraping ...
  How to put my game loop i... 11-20, 04:59 temlotresid6 SledgeNE Game Developm...
Most views
  The best Prog... 579371
  Tutorial Requ... 512370
  Web Scraping ... 442282
  Newbie with P... 386338
  New Users Int... 380288
Most reputation
buran 581
snippsat 511
Larz60+ 452
Gribouillis 362
deanhystad 328
Most replies
  New Users Int... 452
  [book] Variou... 188
  CKEditor / Ri... 100
  moving from t... 95
  Free keys and... 91
Top posters
Larz60+ 12110
buran 8196
snippsat 7390
deanhystad 6916
metulburr 5151
Top referrers
Googlepro 23
metulburr 6
python 6
NonEntity 5
buran 3
Newest members
matt Today
Divyakrishnan071 Today
ichsanputr Today
nicos18 Yesterday
Moltar1997 Yesterday

User Panel Messages

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