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,236
» Latest member: Cristiano
» Forum threads: 38,776
» Forum posts: 175,791

Full Statistics

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

Latest Threads
Two arguments in input fu...
Forum: General Coding Help
Last Post: Pedroski55
3 hours ago
» Replies: 4
» Views: 99
Backward compatibility qu...
Forum: News and Discussions
Last Post: buran
Yesterday, 10:39 AM
» Replies: 3
» Views: 97
I’m building a Python Dat...
Forum: GUI
Last Post: tsgiannis
Nov-07-2025, 07:29 PM
» Replies: 0
» Views: 71
[openpyxl] Set the lockin...
Forum: General Coding Help
Last Post: Pedroski55
Nov-07-2025, 11:59 AM
» Replies: 3
» Views: 107
New Users Introduce Yours...
Forum: Bar
Last Post: BelleroDev
Nov-07-2025, 09:09 AM
» Replies: 452
» Views: 375,068
Best book on learning Pyt...
Forum: News and Discussions
Last Post: mamta25
Nov-07-2025, 06:07 AM
» Replies: 2
» Views: 3,364
Recommend me a Python boo...
Forum: Data Science
Last Post: mamta25
Nov-06-2025, 08:33 AM
» Replies: 7
» Views: 5,556
Code runs perfectly and j...
Forum: General Coding Help
Last Post: noisefloor
Nov-05-2025, 05:56 PM
» Replies: 2
» Views: 187
Natural language processi...
Forum: Homework
Last Post: offsoar
Nov-05-2025, 02:03 PM
» Replies: 2
» Views: 3,196
Can I develop a live vide...
Forum: Web Scraping & Web Development
Last Post: ankitsharma32
Nov-05-2025, 08:31 AM
» Replies: 5
» Views: 7,442

 
  What time format is this?
Posted by: wrybread - Jun-14-2022, 10:27 PM - Forum: General Coding Help - Replies (3)

I'm working with an API that returns the time for events in this format:

2022-06-14T13:00:00-07:00

Can I presume that that's telling me local ti..... More

Print this item

Sad pandas writer create "corrupted" file
Posted by: freko75 - Jun-14-2022, 07:58 PM - Forum: General Coding Help - Replies (1)

Hello,
I recently start to learn Python (I use Jupyter), and I do a code which scrap data from several urls. Depending on the frames, I write data in..... More

Print this item

  What web UI framework do you all use?
Posted by: Fredrik - Jun-14-2022, 05:04 PM - Forum: Web Scraping & Web Development - No Replies

I do not mean Flask or Django, I mean UI library.

I want to create a single page app with similar controls to a normal desktop app, but as always i..... More

Print this item

  Scrollable buttons with an add/delete button
Posted by: Clich3 - Jun-14-2022, 03:20 PM - Forum: GUI - Replies (5)

I am trying to make a GUI to manage the sensors I am going to be putting in my aquariums, terrariums, and vivariums. I am going to have a main menu sc..... More


Attached Files

Thumbnail(s)
   
Print this item

  Points not plotting with reference to x-tick labels
Posted by: Mark17 - Jun-14-2022, 03:08 PM - Forum: General Coding Help - Replies (2)

Here's the graphing portion of my program:
[Python]
fig, axs = plt.subplots(1,1)
fig.set_size_inches(14, 6)

axs.plot(trade_list,P_price_orig_all, ma..... More

Print this item

  How to solve this simple problem? Check if cvs first element is the same in each row?
Posted by: thesquid - Jun-14-2022, 02:50 PM - Forum: General Coding Help - Replies (2)

Ok so I have a cvs with these information (I am using pipes and not commas):

1 | A | B
1 | C | D
2 | E | F


I need a code that does this:
I..... More

Print this item

  Errror when importing pixiedust
Posted by: Led_Zeppelin - Jun-14-2022, 02:01 PM - Forum: General Coding Help - Replies (2)

I install pixie debugger and it installs fine with the commnad

pip install pixiedust

However, when I import it I get the error:

[error]
Attr..... More

Print this item

  set.difference of two list gives empty result
Posted by: wardancer84 - Jun-14-2022, 11:03 AM - Forum: General Coding Help - Replies (4)

hi,

i want to get the difference from two list of strings (using sets) but i always get an empty result. funny enough this worked until today and s..... More

Print this item

  Problem with importing Python file in Visual Studio Code
Posted by: DXav - Jun-14-2022, 10:04 AM - Forum: General Coding Help - Replies (7)

Hello here ! I'm learning how to code starting with Python, and I'm facing a problem trying to import a file as a module. With this code :

[python]..... More

Print this item

  How to format Excel column with comma?
Posted by: dee - Jun-13-2022, 10:11 PM - Forum: General Coding Help - No Replies

I want to format the number columns with commas. I received an error "column.map = '{:,d}'.format AttributeError: 'str' object has no attribute 'map'"..... More

Print this item

  Sublime Text Editor not recognizing Python
Posted by: elroberto - Jun-13-2022, 03:17 PM - Forum: General Coding Help - Replies (5)

I am just trying to run a hello world file through sublime text and it is not recognizing python. I am currently taking an intro to programming class ..... More

Print this item

  4D matrices
Posted by: ali1almakhmari - Jun-13-2022, 09:21 AM - Forum: General Coding Help - No Replies

Hi guys. I recently switched from MATLAB to Python and the syntax is killing me a bit. I ran across this issue here

[python]
picture[:,:,:,j] = cv..... More

Print this item

  Pyspark Window: perform sum over a window with specific conditions
Posted by: Shena76 - Jun-13-2022, 08:59 AM - Forum: General Coding Help - No Replies

Hello everyone,

I'm just learning about pyspark windows, and I was wondering how to achieve a particular operation.

I have a Pyspark table that ..... More

Print this item

  Problem with scrapping Website
Posted by: giddyhead - Jun-13-2022, 03:35 AM - Forum: Web Scraping & Web Development - Replies (1)

Good Day Everyone. I am having issues with web scaping as I am not sure why it does not want to scape. I am using xpath and also soup to gather the ..... More

Print this item

  Simple Python API, need packaging/removing hardcoding
Posted by: zxcv101 - Jun-12-2022, 07:36 PM - Forum: General Coding Help - Replies (2)

Hi guys, very much a newbie question, so pls go easy.

I have assembled the following program by searching the net - this basically logs onto a brok..... More

Print this item

Bug Problem connecting TLS client written in C++ and Twisted server
Posted by: gpropf - Jun-12-2022, 05:57 PM - Forum: Networking - No Replies

I'm trying to get a TLS (encrypted) connection between a client program written in C++ using the Boost::Asio framework and a server written using the ..... More

Print this item

  function understanding
Posted by: insignia47 - Jun-12-2022, 02:49 PM - Forum: Game Development - No Replies

Hello Everyone.

I want to understand the concept behind this function or simply if anybody could explain the function as what its doing and how is ..... More

Print this item

  parallel loop python
Posted by: caro - Jun-12-2022, 07:57 AM - Forum: General Coding Help - Replies (4)

Hello,
I have a funtion with a for loop, and i would like that the loop will be process faster and to make each loop run by a process so that it w..... More

Print this item

  Pygame running slow
Posted by: patagondev - Jun-11-2022, 11:25 PM - Forum: Game Development - Replies (3)

Hello. Im trying to run a simple snake code, which I get from youtube. In the video runs smoothly and fast, but when I run it freezes for moments and..... More

Print this item

  Gmail API - Error 400: redirect_uri_mismatch
Posted by: Depp - Jun-11-2022, 08:06 PM - Forum: Web Scraping & Web Development - Replies (1)

Hi,

I am trying to access Gmail API using Al Sweigart book, however I am getting "Error 400: redirect_uri_mismatch". Attached is the print screensh..... More


Attached Files

Thumbnail(s)
   
Print this item

  List Creation and Position of Continue Statement In Regular Expression Code
Posted by: new_coder_231013 - Jun-11-2022, 12:57 PM - Forum: General Coding Help - Replies (3)

Hello,

I'm going through a Python course and there's a section on extracting data using regular expressions in which the presenter shows the follow..... More

Print this item

  Cannot Display Image after Selecting Image
Posted by: bintangkecil - Jun-11-2022, 09:32 AM - Forum: GUI - Replies (4)

Hello,

I'm trying to figure out how to display image in label. I design the GUI with Qt Designer and work with PyQt5.

Right now I have defined..... More

Print this item

  pdf2image, poppler and paths
Posted by: jehoshua - Jun-11-2022, 02:21 AM - Forum: General Coding Help - Replies (18)

I need to run some tests on converting PDF's to images. The article at https://medium.com/towards-data-science/...-pdf-using-..... More

Print this item

  paths for venv
Posted by: Skaperen - Jun-11-2022, 12:42 AM - Forum: News and Discussions - Replies (5)

i'm looking for documentation that describes all the various paths used by venv needed to understand how venv might impact the system. ..... More

Print this item

  [Solved]Help with SQLite Login Form
Posted by: Extra - Jun-10-2022, 11:48 PM - Forum: General Coding Help - Replies (7)

Hello,

I'm trying to make a login form using Python and SQLite as a database. I am able to match the Name and Password to get a successful login, b..... More

Print this item

  Using .append() with list vs dataframe
Posted by: Mark17 - Jun-10-2022, 08:04 PM - Forum: General Coding Help - Replies (7)

My program adds rows to a dataframe by using .append() with a dictionary. In order to make this work, I think I had to do df = df.append() rather tha..... More

Print this item

  error in timestamp
Posted by: Led_Zeppelin - Jun-10-2022, 07:59 PM - Forum: General Coding Help - Replies (3)

when I try to run the following code, I get an error

[python]
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.py..... More

Print this item

  error in timestamp
Posted by: Led_Zeppelin - Jun-10-2022, 07:59 PM - Forum: General Coding Help - No Replies

when I try to run the following code, I get an error

[python]
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.py..... More

Print this item

  AI Techniques applied to a Game
Posted by: insignia47 - Jun-10-2022, 07:31 PM - Forum: Homework - No Replies

Hello Everyone,

I want to understand how an AI technique is applied on a game in Python. can any body help me understand how the following code BFS..... More

Print this item

  AI Techniques applied to a Game
Posted by: insignia47 - Jun-10-2022, 06:52 PM - Forum: Game Development - Replies (1)

Greetings Everyone,

First of all, let me introduce my self. My name is inSignia and i am 24 years old. I need help implementing AI search algorithm..... More

Print this item

  How to do bar graph with positive and negative values different colors?
Posted by: Mark17 - Jun-10-2022, 06:33 PM - Forum: General Coding Help - Replies (1)

I've been battling this one for over an hour so I'm going to ask for help.

I have a dataframe column that shows trade results. I want those less t..... More

Print this item

  function accepts infinite parameters and returns a graph with those values
Posted by: edencthompson - Jun-10-2022, 03:42 PM - Forum: General Coding Help - No Replies

Hi y'all,

I am trying to create a function that accepts infinite parameters and returns one graph with all parameter values (beta) on it. Currently..... More


Attached Files

Thumbnail(s)
   
Print this item

  rename and add desire "_date" to end of file name before extention
Posted by: RolanRoll - Jun-10-2022, 03:24 PM - Forum: General Coding Help - Replies (1)

hi I have many folders that all of them have same 4 folders( annotation,measurment,preview,support) and 2 files( manifest.saf and .pdf extention) like..... More

Print this item

  Calculation of circles
Posted by: frohr - Jun-10-2022, 01:53 PM - Forum: Data Science - Replies (14)

Hello,
I have to solve issue how to calculate intersection of 3 circles. My example is:
1) first cirlce with diameter 10
2) second circle at 0° dia..... More

Print this item

  multi index issue of one hot encoder preprocessing
Posted by: aupres - Jun-10-2022, 11:13 AM - Forum: Data Science - No Replies

Hello, I am a newbie on feature engineering. Belows are the sample pandas DataFrame and the results

[python]df = pd.DataFrame({'city':['seoul', 'se..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  Two arguments in input fu... 3 hours ago Alfredd Pedroski55 General Codin...
  Backward compatibility qu... Yesterday, 10:39 yutaozhou buran News and Disc...
  [Tkinter] I’m building a ... 11-07, 19:29 tsgiannis tsgiannis GUI
  [openpyxl] Set the lockin... 11-07, 11:59 BelleroDev Pedroski55 General Codin...
  New Users Introduce Yours... 11-07, 09:09 Yoriz BelleroDev Bar
  Best book on learning Pyt... 11-07, 06:07 almahdi mamta25 News and Disc...
  Recommend me a Python boo... 11-06, 08:33 woodward mamta25 Data Science
  Code runs perfectly and j... 11-05, 17:56 compuman145 noisefloor General Codin...
  Natural language processi... 11-05, 14:03 maaaa2401 offsoar Homework
  Can I develop a live vide... 11-05, 08:31 mtrkhan ankitsharma32 Web Scraping ...
  [SOLVED] Linefeed when wr... 11-04, 11:51 Winfried buran General Codin...
Most views
  The best Prog... 578684
  Tutorial Requ... 509142
  Web Scraping ... 441841
  Newbie with P... 385794
  New Users Int... 375068
Most reputation
buran 581
snippsat 510
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+ 12102
buran 8194
snippsat 7388
deanhystad 6907
metulburr 5151
Top referrers
Googlepro 24
metulburr 6
python 6
NonEntity 5
buran 3
Newest members
Cristiano Yesterday
Alfredd Yesterday
clayote Yesterday
yutaozhou 11-07
EchoFlowar3Dip 11-07

User Panel Messages

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