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,244
» Latest member: thebigback
» Forum threads: 38,778
» Forum posts: 175,805

Full Statistics

Online Users
There are currently 50 online users.
» 0 Member(s) | 48 Guest(s)
Bing, Google

Latest Threads
Backward compatibility qu...
Forum: News and Discussions
Last Post: Gribouillis
1 hour ago
» Replies: 5
» Views: 179
Help with Serial.write in...
Forum: General Coding Help
Last Post: racingsubby
7 hours ago
» Replies: 2
» Views: 59
I’m building a Python Dat...
Forum: GUI
Last Post: Gribouillis
10 hours ago
» Replies: 6
» Views: 170
[split] print two differe...
Forum: General Coding Help
Last Post: Gribouillis
Yesterday, 05:37 AM
» Replies: 1
» Views: 73
Data Science
Forum: Data Science
Last Post: mamta25
Yesterday, 05:27 AM
» Replies: 3
» Views: 2,593
Two arguments in input fu...
Forum: General Coding Help
Last Post: Pedroski55
Nov-09-2025, 12:56 AM
» Replies: 4
» Views: 164
[openpyxl] Set the lockin...
Forum: General Coding Help
Last Post: Pedroski55
Nov-07-2025, 11:59 AM
» Replies: 3
» Views: 154
New Users Introduce Yours...
Forum: Bar
Last Post: BelleroDev
Nov-07-2025, 09:09 AM
» Replies: 452
» Views: 375,585
Best book on learning Pyt...
Forum: News and Discussions
Last Post: mamta25
Nov-07-2025, 06:07 AM
» Replies: 2
» Views: 3,392
Recommend me a Python boo...
Forum: Data Science
Last Post: mamta25
Nov-06-2025, 08:33 AM
» Replies: 7
» Views: 5,592

 
  Stuck with using lists to solve task
Posted by: gery576 - Jan-15-2024, 10:59 AM - Forum: Homework - Replies (9)

Hi everyone,

I am struggling with solving below task which I received as a home assignment in my Python course to practice lists (I've been learning ..... More

Print this item

  [split] Pipenv
Posted by: mohammadasadi4 - Jan-15-2024, 10:35 AM - Forum: General Coding Help - No Replies

Hi everyone
i have a problem and it made me really crazy and i am struggling with it for almost a week searching for solutions in the internet but no..... More

Print this item

  TKinter Remove Button Frame
Posted by: Nu2Python - Jan-15-2024, 06:00 AM - Forum: GUI - Replies (8)

Hi All - How can I remove the button frame in my code? I have tried a few examples I found, but have had no luck. I see one argument example for 'bor..... More


Attached Files

Thumbnail(s)
   
Print this item

  Why doesn't list require global keyword?
Posted by: johnywhy - Jan-15-2024, 12:02 AM - Forum: General Coding Help - Replies (9)

Why doesn't appending to a global list require the global keyword, but modifying a scalar variable does?

[code]numbers = []
dog = 5

def enter..... More

Print this item

  How Write Part of a Binary Array?
Posted by: Assembler - Jan-14-2024, 10:46 PM - Forum: General Coding Help - Replies (1)

Windows 7
Python 3.8.10

I wish to read a binary file, and then write it's data to a different file, skipping the first 16 bytes.
How do I do that..... More

Print this item

  Code test
Posted by: gearmex - Jan-14-2024, 03:47 PM - Forum: Homework - Replies (2)

I just started learning this, i noticed in Finnish language it had lot of things i could not make sense of it, Changed to English and it works better...... More


Attached Files

Thumbnail(s)
   
Print this item

  conversion of newlines in a string
Posted by: Skaperen - Jan-14-2024, 06:20 AM - Forum: News and Discussions - Replies (3)

what is the best function to convert newlines in a string to Unix style whether in Windows style or Mac style (or a mix of both), all in one function ..... More

Print this item

  Python code for alignment and font size
Posted by: 1418 - Jan-14-2024, 03:56 AM - Forum: General Coding Help - No Replies

Hi, I would like help with a code to align left and top and change font size to 10 similar to VBA code. The code I am creating is below, cheers.
[pyt..... More

Print this item

  Python date format changes to date & time
Posted by: 1418 - Jan-14-2024, 03:44 AM - Forum: General Coding Help - Replies (4)

Hi, my original data is short date (15/10/2023) but when I run the below code python changes it to 2023-10-15 00:00:00, how can I prevent this? Cheers..... More

Print this item

  Python code to set column width
Posted by: 1418 - Jan-14-2024, 03:31 AM - Forum: General Coding Help - Replies (11)

Hi, I have tried several codes to set my column widths without success. Is there a simple code similar to VBA I could use?
I would like to add column..... More

Print this item

  File Checksum V2
Posted by: rob101 - Jan-13-2024, 11:21 PM - Forum: Code sharing - No Replies

Announcing version 2 of my 'File Checksum' app, which is a complete rework of the V1 app. As with V1, V2 was developed using the PAGE GUI design appli..... More


Attached Files

Thumbnail(s)
   
Print this item

  List Comprehension Issue
Posted by: johnywhy - Jan-13-2024, 09:59 PM - Forum: General Coding Help - Replies (5)

This works:
[code]choices = 'a', 'b', 'c'
menu = ""

for idx, choice in enumerate(choices):
menu += "\t".join((str(idx), choice, '\n'))

print..... More

Print this item

  Receive Input on Same Line?
Posted by: johnywhy - Jan-13-2024, 09:24 PM - Forum: General Coding Help - Replies (8)

How to receive input on the same line, without clearing the rest of the terminal?

The following prints a new "Enter" line for every bad entry.

..... More

Print this item

  Tab Delimited Strings?
Posted by: johnywhy - Jan-13-2024, 08:47 PM - Forum: General Coding Help - Replies (7)

the following tab-delimits each item

print ("a", "b")
a	b
Is there an equally simple way to build a tab-delimited string, aside from pr..... More

Print this item

  Append inside for?
Posted by: johnywhy - Jan-13-2024, 06:46 PM - Forum: General Coding Help - Replies (10)

This works:

opts1 = []
for idx, choice in enumerate(choices):
	 opts1.append (str(idx))
And this works:

[code]menu = ""
for i..... More

Print this item

  Power Shells vs Compile and Run programs?
Posted by: RockBlok - Jan-13-2024, 05:11 PM - Forum: General Coding Help - Replies (2)

Good morning,

I decided to take a crack at the edx machine learning course, and I had a question about how to approach writing the code.

They se..... More

Print this item

  Regarding pdf for PCEP and PCAP certification
Posted by: P212 - Jan-13-2024, 03:57 PM - Forum: News and Discussions - Replies (1)

Hi,

I went through this link -https://edube.org/study for PCEP certification exam preparation, but i want this study matarial in a pr..... More

Print this item

  How should I process this data?
Posted by: SuchUmami - Jan-13-2024, 10:55 AM - Forum: General Coding Help - Replies (2)

I don't need coding help but I would really appreciate some ideas about how to tackle this problem.

I have this dataset:

[img]https://i.imgur.co..... More

Print this item

  Text conversion to lowercase is not working
Posted by: ineuw - Jan-13-2024, 10:53 AM - Forum: General Coding Help - Replies (3)

I am trying to change text which contain these capitalized words surrounded by space. But this Autokey script is not working. Can someone point out wh..... More

Print this item

  websocket help
Posted by: johnbob - Jan-13-2024, 06:32 AM - Forum: Networking - Replies (2)

hello every one
i want connect to pocket option broker with its websocket and send and get data for example get OTC market candle data.
when i conn..... More

Print this item

  Passing writable arguments to functions.
Posted by: Assembler - Jan-12-2024, 09:19 PM - Forum: General Coding Help - Replies (11)

Sorry for beating so fundamental a question into the ground, but as a FORTRAN programmer, I feel pain with python functions.

Consider the function ..... More

Print this item

  connect sql by python using txt. file
Posted by: dawid294 - Jan-12-2024, 09:19 AM - Forum: General Coding Help - Replies (2)

Hi python experts i do not know what i do wrong , I would like connect to sql by python using txt.file , Where i do a mistake? or is possible connect ..... More

Print this item

  data validation with specific regular expression
Posted by: shaheen07 - Jan-12-2024, 06:07 AM - Forum: General Coding Help - No Replies

This post is to find a way to check if data matches with specific regular expression

[python]import pandas as pd
# Create first data frame
df1 ..... More


Attached Files

Thumbnail(s)
   
Print this item

  Problem with calculation of market data
Posted by: MrQuant1 - Jan-12-2024, 12:38 AM - Forum: Data Science - No Replies

Hello dear forum, my first post here.

I'm currently stuck and have been working on the same problem for days.

I am currently writing a code that..... More

Print this item

  Im at square one even with trying to install python
Posted by: origen - Jan-12-2024, 12:01 AM - Forum: General Coding Help - Replies (1)

Ok I just registared here so Im at square one even with trying to install python
I did the downloads but don't see how to install

anyway, looking..... More


Attached Files

Thumbnail(s)
   
Print this item

  writing and running code in vscode without saving it
Posted by: akbarza - Jan-11-2024, 11:55 AM - Forum: General Coding Help - Replies (5)

hi
I want to write some code in vs code and then run it without saving the code in any place. is it possible?
if it is possible, how can I do it?
f..... More

Print this item

  question about __repr__ in a class
Posted by: akbarza - Jan-11-2024, 11:36 AM - Forum: General Coding Help - Replies (4)

hi
the below code is in:https://rea[url=https://python-forum.io/thread-41407.html]..... More

Print this item

  Why can't I copy and past only ONE specific tab?
Posted by: NewWorldRonin - Jan-10-2024, 05:50 PM - Forum: General Coding Help - Replies (8)

Hello,
This is my first post, be gentle. :)

I am an expert Excel user who is now venturing into Python in an effort to automate "the boring stuff"..... More

Print this item

  This result object does not return rows. It has been closed automatically
Posted by: dawid294 - Jan-10-2024, 04:52 PM - Forum: General Coding Help - Replies (5)

Hi colleagues, Can you help me with this? I know that here are the most of discussion about this problem, but i can not solve it. I red that i have to..... More

Print this item

  Variable definitions inside loop / could be better?
Posted by: gugarciap - Jan-09-2024, 09:36 PM - Forum: General Coding Help - Replies (2)

Dear Python Community,

I use Python a lot for my company projects, and I ussually do some taslks that seems to
repeats every time. For instance,I..... More

Print this item

  Call for Speakers for the 2024 Carolina Code Conference is open until April 15th
Posted by: brightball - Jan-09-2024, 06:57 PM - Forum: News and Discussions - No Replies

A polyglot conference for all who code!

Just wanted to drop by and let everyone know that our Call for Speakers has opened for 2024. We're growing ..... More

Print this item

  run part of a script with a different version of Python
Posted by: jdog - Jan-09-2024, 02:20 PM - Forum: General Coding Help - Replies (3)

In my work environment, I have very little leeway with my the software configuration. I concurrently use two versions of python: a 2.xx version to acc..... More

Print this item

  Parsing large JSON
Posted by: josvink66 - Jan-09-2024, 11:46 AM - Forum: General Coding Help - Replies (5)

Hi!

I'm am very new to Python but love playing with it. What I want to accomplice is to get the content of the following JSON url: https://raw.gith..... More

Print this item

  I am getting an error while finding the moving_average_of_peaks
Posted by: sayedsadat - Jan-08-2024, 11:26 PM - Forum: News and Discussions - Replies (1)

Hello Guys! Smile
firstly I would like to say happy new year to all of you,
secondly, its a few days which the following code makes me busy, ..... More

Print this item

  If statement question help
Posted by: Gatso100 - Jan-08-2024, 06:00 PM - Forum: Homework - Replies (5)

Hi guys,

New to this forum and to the programming language. I was hoping someone could help me out with he following task I have been given. Belo..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  Backward compatibility qu... 1 hour ago yutaozhou Gribouillis News and Disc...
  Help with Serial.write in... 7 hours ago racingsubby racingsubby General Codin...
  [Tkinter] I’m building a ... 10 hours ago tsgiannis Gribouillis GUI
  [split] print two differe... Yesterday, 05:37 Reema Gribouillis General Codin...
  Data Science Yesterday, 05:27 Oshadha mamta25 Data Science
  Two arguments in input fu... 11-09, 00:56 Alfredd Pedroski55 General Codin...
  [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...
Most views
  The best Prog... 578762
  Tutorial Requ... 509587
  Web Scraping ... 441886
  Newbie with P... 385859
  New Users Int... 375585
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+ 12103
buran 8195
snippsat 7388
deanhystad 6907
metulburr 5151
Top referrers
Googlepro 23
metulburr 6
python 6
NonEntity 5
buran 3
Newest members
thebigback Yesterday
dimitriwati Yesterday
johnsonlucas83 Yesterday
ColorTig Yesterday
AcoolPurpleOne1863 Yesterday

User Panel Messages

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