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,393
» Latest member: aurelio12282025
» Forum threads: 38,821
» Forum posts: 176,018

Full Statistics

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

Latest Threads
How to Integrate External...
Forum: General Coding Help
Last Post: noisefloor
Yesterday, 06:21 PM
» Replies: 1
» Views: 73
Calling python from anoth...
Forum: General Coding Help
Last Post: eedjsa
Yesterday, 04:06 PM
» Replies: 9
» Views: 237
IP address for users
Forum: Networking
Last Post: itx_sumeet
Yesterday, 05:53 AM
» Replies: 4
» Views: 7,071
Lottery generator (beginn...
Forum: General Coding Help
Last Post: Pedroski55
Yesterday, 01:10 AM
» Replies: 5
» Views: 9,897
[split] How to ask Smart ...
Forum: General Coding Help
Last Post: Pedroski55
Dec-25-2025, 07:58 AM
» Replies: 2
» Views: 139
Need Help with Pandas Con...
Forum: Bar
Last Post: Axel_Erfurt
Dec-24-2025, 10:07 AM
» Replies: 1
» Views: 85
requests.post not sending...
Forum: Web Scraping & Web Development
Last Post: noisefloor
Dec-24-2025, 09:20 AM
» Replies: 2
» Views: 152
Looking for constructive ...
Forum: News and Discussions
Last Post: cecrease
Dec-24-2025, 03:16 AM
» Replies: 2
» Views: 1,297
Switching from batch proc...
Forum: GUI
Last Post: arbiel
Dec-23-2025, 09:38 PM
» Replies: 0
» Views: 113
Exploring Different Pytho...
Forum: News and Discussions
Last Post: ankitsharma32
Dec-23-2025, 01:01 PM
» Replies: 3
» Views: 757

 
  satellite tracking module
Posted by: barryjo - Feb-28-2022, 09:11 PM - Forum: General Coding Help - Replies (1)

Does anyone know of a python satellite tracking module that inputs the two line orbit elements and then outputs the az/el as a function of time?

Print this item

  Proper way to do the OR statement?
Posted by: Mark17 - Feb-28-2022, 09:05 PM - Forum: General Coding Help - Replies (5)

I've swear I've seen this before, but I can't remember what the problem is. This works:

[Python]
if btstats.loc[i,'Status'] == 'WINNER' or btstat..... More

Print this item

  reference from another function
Posted by: Frankduc - Feb-28-2022, 06:18 PM - Forum: General Coding Help - Replies (10)

Hi,

How is it possible to use an if statement from another function. I am suppose to determine from the other function def inverserChaine(self): if..... More

Print this item

Question How to move a class to a custom module?
Posted by: python300 - Feb-28-2022, 03:47 PM - Forum: General Coding Help - Replies (4)

I am using Python 3.6.0 :: Continuum Analytics, Inc. on Linux.
I have ContextFilter Class in my python script which I am using to have a counter vari..... More

Print this item

  Is my code OOP and what could i do better?
Posted by: klajdi7 - Feb-28-2022, 03:42 PM - Forum: Code Review - Replies (3)

[python]

class Library:
def __init__(self, listOfBooks=None):
self.books = listOfBooks
self.books1 = []

def displayA..... More

Print this item

  [Solved:] How to use pd.append() ?
Posted by: ju21878436312 - Feb-28-2022, 12:15 PM - Forum: General Coding Help - Replies (3)

Can someone tell me, why the first example of how to use pd.append() works, and the second not?

[python]
# 1) This works fine:

df1 = pd.DataF..... More

Print this item

  How to use rangesliders feature from matplotlib in tkinter?
Posted by: pymn - Feb-28-2022, 07:28 AM - Forum: GUI - Replies (2)

I have written a code to use the RangeSldider widget to have control over my axis range.
[python]from tkinter import *
import numpy as np
import ma..... More

Print this item

  "<class 'typeerror'>: don't know how to convert" error
Posted by: GiggsB - Feb-28-2022, 05:14 AM - Forum: General Coding Help - Replies (3)

Hi,
I have a .c library which I want to use through my python code. The c function that I am calling is: [inline]crc32Word(uint32_t crc, const void *b..... More

Print this item

  python espeak on Windows??
Posted by: Extra - Feb-27-2022, 10:59 PM - Forum: General Coding Help - Replies (4)

Hello,

I'm running my python script on my windows pc and I need a text-to-speech engine to add the finishing touches to my script.
I would like to..... More

Print this item

Question Colored text
Posted by: Alivegamer - Feb-27-2022, 08:55 PM - Forum: General Coding Help - Replies (3)

I've been looking on how to change your text in the command when you run python.
[python]class Colors:
RED = "\x1b[0;31;40"

def Starting():
..... More

Print this item

  Transferring argument to a thread issues
Posted by: msloat - Feb-27-2022, 03:04 PM - Forum: Networking - Replies (1)

Hello,

First off, I have been working on a phone app to read back what some of my props are doing. The App can also send commands to my props. I ..... More

Print this item

Photo Visual studio code unable to color syntax on python interpreter
Posted by: tomtom - Feb-27-2022, 09:15 AM - Forum: General Coding Help - Replies (4)

Os: windows 11
This problem happends after rolling back windows update

   
On the picture attachment ''python code syntax.png'' is my..... More


Attached Files

Thumbnail(s)
   
Print this item

  kivy SyntaxError.
Posted by: water - Feb-26-2022, 08:02 PM - Forum: GUI - Replies (1)

I follow a tutorial test kivy like below:

[python]
from kivy.app import App

# importing builder from kivy
from kivy.lang import Builder


#..... More

Print this item

  How did one column get left-justified?
Posted by: Mark17 - Feb-26-2022, 07:19 PM - Forum: General Coding Help - Replies (6)

So I was going about tweaking the formatting of this .csv file (in Excel) generated by Python and then at one point, the S_exp_mo column (that is, col..... More

Print this item

  class, attribute and method
Posted by: Frankduc - Feb-26-2022, 05:02 PM - Forum: General Coding Help - Replies (9)

Hello,

Its been a few hours i am struggling with this code. I am having a hard time understanding the use of classes and constructors.

[python]from ..... More

Print this item

  Rock paper scissors in python with "algorithm"
Posted by: Agat0 - Feb-26-2022, 02:42 PM - Forum: General Coding Help - Replies (24)

In the end I was able to do it thanks to what I was looking for through the dictionary of victory made

Print this item

  cmake and pip3 install warnings with python 3.10.2
Posted by: cyrduf - Feb-26-2022, 01:08 PM - Forum: General Coding Help - No Replies

Hi,

I make upgrades for python 3.10.2 on a centos.
I upgrade cmake also with 3.22.1.
And I install python faker module (because it's seems to be ..... More

Print this item

  Sorting table data
Posted by: Blacktime2 - Feb-26-2022, 12:57 PM - Forum: General Coding Help - Replies (1)

Hi everyone,

I've a difficulties with my project, I'm a novice in Python. I would like sort my column "TypeDOC" in descending order but it's not p..... More

Print this item

  How do I link the virtual environment of that project to the 3.9.2 version of python?
Posted by: Bryant11 - Feb-26-2022, 06:43 AM - Forum: General Coding Help - Replies (1)

I install python version 3.9.0 on my PC. I then created my virtual environment, created my project and everything worked really well. After some month..... More

Print this item

  scikit-tensor package
Posted by: Lamine - Feb-26-2022, 03:31 AM - Forum: Data Science - Replies (1)

Hello,

I'm tring to install scikit-tensor package but iI have this problem

C:\>pip install scikit-tensor
Collecting scikit-tensor
Using cac..... More

Print this item

  a form of coded logic in a comand line
Posted by: Skaperen - Feb-25-2022, 07:09 PM - Forum: News and Discussions - Replies (10)

i am wanting to come up with an easy way to express Python logic in a single line of tokenized text like that which comes from command arguments in sy..... More

Print this item

  Is it possible to make a program recognize how many clicks it has had on the monitor?
Posted by: jao - Feb-25-2022, 06:31 PM - Forum: General Coding Help - No Replies

I need a screen developed in tkinter to appear on the monitor, but with one condition: only when the user presses the right mouse button twice. Is it ..... More

Print this item

  remove zeros at the end of a number
Posted by: Frankduc - Feb-25-2022, 02:28 PM - Forum: General Coding Help - Replies (7)

Hello,

I am trying to remove the .0000 in the result of my window for variable carres and cubes.

I tried truncate, int, round but nothing helps...... More

Print this item

  [Solved] Delete a line in a dataframe using .reset_index() and .drop()
Posted by: ju21878436312 - Feb-25-2022, 01:14 PM - Forum: General Coding Help - Replies (2)

Hi out there,

I'd like to delete a line in the dataframe "df_new". Why does it not work? I get the error: "KeyError: '[0] not found in axis".

[..... More

Print this item

  Building python (3.9.5) with different libexpat version (2.4.6)
Posted by: raghupcr - Feb-25-2022, 11:29 AM - Forum: General Coding Help - No Replies

Hi All,

we are using python 3.9.5 version in our application.

when there are any issues ( security issues ) in external modules like openssl, bz..... More

Print this item

  drawing moving circle on line with python
Posted by: barrai - Feb-25-2022, 09:36 AM - Forum: General Coding Help - Replies (1)

hi how are u
i can draw circle and draw line but i cant how to draw moving circle on line .please help me.

Print this item

  Isolate a word from a long string
Posted by: nicocorico - Feb-25-2022, 08:05 AM - Forum: General Coding Help - Replies (2)

Hello everyone,

I am trying to isolate specific words out of a string if present but until now with no success.
If in the string I have 'irg', 's..... More

Print this item

Lightbulb Open CV
Posted by: Utkarsha - Feb-25-2022, 05:47 AM - Forum: General Coding Help - Replies (5)

Hi all,

This post is regarding image registration using open CV. I have come across this article in Geeks for geeks and following is the link:

h..... More

Print this item

  Python 3.10 not happy with Pandas and PyPlot?
Posted by: Danno - Feb-25-2022, 05:39 AM - Forum: General Coding Help - Replies (1)

Hi. I've been using the V3.10 of Python. I've been having all sorts of weird errors. The latest is "'NoneType' object is not callable." Given th..... More

Print this item

  Exception handler problem part 2
Posted by: Leo - Feb-25-2022, 04:59 AM - Forum: Homework - Replies (3)

Hello everyone, I'm still new to this so bear with me please

My issue today is that I need to create a program that continually prompts the user fo..... More

Print this item

Question Opencv and threading
Posted by: ethernel - Feb-25-2022, 04:27 AM - Forum: General Coding Help - Replies (4)

So, hello everyone, I really need yo help

it's been 4days i'm learning python and 2days i'm stuck on one thing

https://www.youtube.com/playlist?..... More

Print this item

  Python3 for loop over a dict
Posted by: ogautier - Feb-25-2022, 01:28 AM - Forum: General Coding Help - Replies (3)

[quote]
Hello!
I am trying to get all the values individually for each asset for example:

BCHUSD
a = 301.340000
b = 301.160000
c = 301.280000 ..... More

Print this item

  How does UnboundLocalError work?
Posted by: deanhystad - Feb-24-2022, 09:06 PM - Forum: General Coding Help - Replies (3)

While answering a question on the forum I wrote an example where I knew the outcome, but I don't understand the reason for the outcome.
[python]check..... More

Print this item

  DNS qery library
Posted by: Skaperen - Feb-24-2022, 08:45 PM - Forum: News and Discussions - Replies (7)

i recall seeing a library suitable for very specific DNS queries. i can't find it, now. looking in pypi i find tons of stuff for dns. but, i can't ..... More

Print this item

  Nested functions: calculation is not performed
Posted by: alexfrol86 - Feb-24-2022, 03:42 PM - Forum: General Coding Help - Replies (4)

Hi! Below is my code performed as nested functions. The iterations go not through all lines but only within lines 14-16. Thus, I receive no results. I..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  How to Integrate External... Yesterday, 18:21 finallen321 noisefloor General Codin...
  Calling python from anoth... Yesterday, 16:06 eedjsa eedjsa General Codin...
  IP address for users Yesterday, 05:53 Robots itx_sumeet Networking
  Lottery generator (beginn... Yesterday, 01:10 Hullari Pedroski55 General Codin...
  [split] How to ask Smart ... 12-25, 07:58 yoanselcp Pedroski55 General Codin...
  Need Help with Pandas Con... 12-24, 10:07 naproxy_1 Axel_Erfurt Bar
  requests.post not sending... 12-24, 09:20 JarredAwesome noisefloor Web Scraping ...
  Looking for constructive ... 12-24, 03:16 decuser cecrease News and Disc...
  [PyQt] Switching from bat... 12-23, 21:38 arbiel arbiel GUI
  Exploring Different Pytho... 12-23, 13:01 girish_benvanshi ankitsharma32 News and Disc...
  We open-sourced kubesdk —... 12-21, 11:52 beslanpuzl beslanpuzl Code sharing
Most views
  The best Prog... 580378
  Tutorial Requ... 519156
  Web Scraping ... 442771
  Newbie with P... 386955
  New Users Int... 386299
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+ 12117
buran 8198
snippsat 7398
deanhystad 6920
metulburr 5151
Top referrers
Googlepro 23
metulburr 6
python 6
NonEntity 5
buran 3
Newest members
aurelio12282025 Today
bejaminmaarleyo1374 Today
taylorlitleoz476 Today
desy845 Today
atalieyandext4063 Yesterday

User Panel Messages

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