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,298
» Latest member: Divyakrishnan071
» Forum threads: 38,795
» Forum posts: 175,890

Full Statistics

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

Latest Threads
My regex function is not ...
Forum: General Coding Help
Last Post: perfringo
1 hour ago
» Replies: 3
» Views: 98
silent deployment Python ...
Forum: News and Discussions
Last Post: Bummibaer
1 hour ago
» Replies: 2
» Views: 70
best way to learn python
Forum: News and Discussions
Last Post: ichsanputr
5 hours ago
» Replies: 6
» Views: 3,177
data fetching for indian ...
Forum: Web Scraping & Web Development
Last Post: Pedroski55
Yesterday, 02:50 AM
» Replies: 6
» Views: 243
PyQt5 - Get a parameter f...
Forum: GUI
Last Post: deanhystad
Nov-24-2025, 02:18 PM
» Replies: 5
» Views: 128
Brazil Python Help to aut...
Forum: Jobs
Last Post: MileHigh303
Nov-21-2025, 08:30 PM
» Replies: 0
» Views: 90
My goal to be hired worki...
Forum: News and Discussions
Last Post: mamta25
Nov-21-2025, 06:15 AM
» Replies: 4
» Views: 1,525
[SOLVED] [BeautifulSoup] ...
Forum: Web Scraping & Web Development
Last Post: Winfried
Nov-20-2025, 02:10 PM
» Replies: 2
» Views: 174
How to Implement Real-Tim...
Forum: Web Scraping & Web Development
Last Post: ankitsharma32
Nov-20-2025, 06:48 AM
» Replies: 0
» Views: 81
How to put my game loop i...
Forum: Game Development
Last Post: SledgeNE
Nov-20-2025, 04:59 AM
» Replies: 11
» Views: 6,146

 
  t_games v0.44.0a1
Posted by: ichabod801 - Aug-10-2019, 08:08 AM - Forum: Code sharing - No Replies

I just finished a new release of t_games.

Games added:

Print this item

  working with Micropython - which ecosystem to choose - ESP 8266 or ESP 32?
Posted by: apollo - Aug-10-2019, 07:53 AM - Forum: Homework - Replies (1)

dear community



working with Micropython - which ecosystem to choose - ESP 8266 or ESP 32?


I work with Kids. I'm always looking for econ..... More

Print this item

  Thonny
Posted by: Kundan - Aug-10-2019, 07:29 AM - Forum: Homework - Replies (1)

I am using Thonny IDE for Python programs. Can I plugin ZOD B in it? How?

Print this item

  Read exel with merged cells and write to another excel
Posted by: SriMekala - Aug-10-2019, 07:14 AM - Forum: Data Science - No Replies

Hi,
I read the excel sheet which has "merged cells", and I want to write to another file retaining original merged cells.

My input excel is below:..... More

Print this item

  catch input type error
Posted by: mcmxl22 - Aug-10-2019, 06:21 AM - Forum: General Coding Help - Replies (5)

I am trying to get this script to only accept integers.
[python]
number = int(input("Enter a number. "))
if isinstance(number, str):
print("En..... More

Print this item

  how to calculate overlaping coefficient between two probablity functions
Posted by: Staph - Aug-10-2019, 05:02 AM - Forum: Data Science - Replies (3)

I have two probability density functions generated as follows:

location = 0.97
scale = 1.0
x = np.linspace(-5,5,100)

..... More

Print this item

  how to put a frozenset in a frozen set
Posted by: Skaperen - Aug-09-2019, 11:55 PM - Forum: General Coding Help - Replies (5)

what is a an expression to put a frozenset inside a frozenset? since a frozenet is hashable it should work ... in theory. when i try it i just get a..... More

Print this item

  math.gcd() is limited to 2 arguments
Posted by: Skaperen - Aug-09-2019, 10:34 PM - Forum: News and Discussions - Replies (2)

math.gcd() is limited to 2 arguments even though there are times the GCD is needed for 3 or more numbers. and LCM (Least Common Multiple) is related ..... More

Print this item

  coloring the widget table row
Posted by: atlass218 - Aug-09-2019, 07:31 PM - Forum: GUI - Replies (5)

hi;
I created a graphical application with Qtdesigner and pyqt5. To finalize it completely, I started the creation some retouches concerning the colo..... More

Print this item

  what could i do with my file tree list generator?
Posted by: Skaperen - Aug-09-2019, 07:13 PM - Forum: News and Discussions - Replies (3)

a while back we talked about walking a file tree and i found the function to do that in the Python library had a strange order to it, but the order i ..... More

Print this item

  help with multiprocess concept
Posted by: kiyoshi7 - Aug-09-2019, 07:02 PM - Forum: General Coding Help - Replies (2)

Hi im trying to write a module that communicates with a ucontroller via pyserial, plots data if needed. The general outline of what I want to do is in..... More

Print this item

  remove weekends from matplot
Posted by: mr_byte31 - Aug-09-2019, 04:28 PM - Forum: General Coding Help - Replies (3)

I am plotting some charts and I noticed that I have gaps in the weekend days.
I want to remove the weekend days from the chart.


[python]
from m..... More


Attached Files

Thumbnail(s)
   
Print this item

  How to check after 30 minutes if Buttons have been clicked?
Posted by: bmghafoor - Aug-09-2019, 03:45 PM - Forum: GUI - Replies (1)

I have a GUI with two buttons. When The GUI is started, I want python to print "No button selected" in 30 minutes if no button is selected in 30 minut..... More

Print this item

  tk hangman game
Posted by: joe_momma - Aug-09-2019, 02:48 PM - Forum: Code sharing - No Replies

This is a spelling game. I set it up to create a list of random words over 9 characters.
The top script is the list named hangWords001c.py the second..... More

Print this item

  How to clear multiple Qlineedit in a loop
Posted by: mart79 - Aug-09-2019, 12:30 PM - Forum: GUI - Replies (6)

How can you clear multiple Qlineedit in a loop or efficiently? I have about 30 Qlineedit in a GUI.
They all have a unique name starting with 'txt' su..... More

Print this item

  String formatting difficulties
Posted by: mmk1995 - Aug-09-2019, 10:33 AM - Forum: General Coding Help - Replies (3)

Hi all,

I would like to ask, why the below code is valid,

[python]def place_value(number):
return ("{:,.2f}".format(number))

print(place_..... More

Print this item

  Cartopy Error
Posted by: bostonwx - Aug-09-2019, 10:22 AM - Forum: General Coding Help - Replies (6)

Good morning,

Before I get into my issue, I have extensively searched on google in hopes of finding a solution and I've found nothing. I'm also ju..... More

Print this item

  Select a part of an element of a list with Index
Posted by: BollerwagenIng - Aug-09-2019, 09:27 AM - Forum: General Coding Help - No Replies

I've created a list with a for loop and got elements with many elements... How can I make this easier?

[python]
cmc = []

CYC1 = cmc[0]..... More

Print this item

  install matplotlib
Posted by: falahfakhri - Aug-09-2019, 09:23 AM - Forum: News and Discussions - Replies (3)

Hi all this is my first post in here, and I'm a new user of python, I need your help please,

I'm facing up problem while trying to install matplot..... More

Print this item

  Series object error message
Posted by: abhaydd - Aug-09-2019, 07:18 AM - Forum: Data Science - Replies (1)

Hello,

I am trying to create data frame of Share prices based on data provided by vendor. I am getting an error message "'Series' object has no at..... More

Print this item

  Get all values of for loop with an index
Posted by: BollerwagenIng - Aug-09-2019, 07:12 AM - Forum: General Coding Help - Replies (2)

I've read a text file and got my ten lines with a for loop:
[python]
j = 871
i=0
counter = list(range(10))
for i in counter:
CYC1=('\n'.joi..... More

Print this item

  QLinearGradient Banding
Posted by: kainev - Aug-09-2019, 06:49 AM - Forum: GUI - Replies (2)

Hi,

I am creating an application with PyQt5. I originally was using an image for the background of my program that has the correct gradient however..... More

Print this item

  type checking
Posted by: Skaperen - Aug-09-2019, 02:37 AM - Forum: Bar - Replies (4)

Python doesn't do type checking of passed arguments in function calls so i do that on my own. but, at least i can do checks that allow multiple types..... More

Print this item

  Integrating shango app with desktop GUI app
Posted by: Man_from_India - Aug-09-2019, 01:49 AM - Forum: General Coding Help - No Replies

I created a desktop GUI for pere to peer socket connection. I will use this GUI for text msg exchange. So I will implement this using python socket pr..... More

Print this item

  what exception for getting list of wrong size
Posted by: Skaperen - Aug-09-2019, 01:03 AM - Forum: News and Discussions - Replies (3)

in a function that might get a list, but requires certain sizes, what exception should it raise if it gets the wrong size? the function i am writing ..... More

Print this item

  using Python as an program's internal scripting system
Posted by: Skaperen - Aug-08-2019, 11:41 PM - Forum: News and Discussions - No Replies

i will develop a program ... it might be in C ... it might be in Pike ... it might be in Python3 ... and the program needs a scripting system to run "..... More

Print this item

  module not found?
Posted by: kevindadmun - Aug-08-2019, 10:25 PM - Forum: Game Development - Replies (2)

Well after taking a break in learning pycharm and pygame i am greeted with a new error that make no sense. Now when you import pygame and run it you w..... More

Print this item

  ISO8583 - POS transactions
Posted by: asharmds - Aug-08-2019, 09:32 PM - Forum: News and Discussions - Replies (1)

Hi, can anybody share ideas of which library/module to use for testing ISO-8583 transactions in python.

Print this item

  dynamic data for python
Posted by: claudiamaia - Aug-08-2019, 09:03 PM - Forum: Data Science - Replies (1)

I search for available dynamic data on people fluctuation. Do you know any databases available for python?

Print this item

  Assignment operator
Posted by: DavidTheGrockle - Aug-08-2019, 08:47 PM - Forum: General Coding Help - Replies (7)

I cannot seem to grasp the difference between an arithmetic operator and an assignment operator.

Could someone please show point me to examples whe..... More

Print this item

  anyway to get the domain name from the ip ??
Posted by: evilcode1 - Aug-08-2019, 06:51 PM - Forum: Networking - Replies (6)

hello all ...
i have a list of ip's range for a websites in the server .... i try to get the domain name from ip i used python requests lib. to grep ..... More

Print this item

  calculation with list in list
Posted by: gianniskampanakis - Aug-08-2019, 06:36 PM - Forum: General Coding Help - Replies (13)

hello. with this code i can calculate 1 + 2 + 3 = 6

l = [1,2,3,]
def suml(l):
  s= 0
  for i in l:
    s = s + i
  return s  
..... More

Print this item

  Installing PIP and setting up virtualenv
Posted by: steveholland68 - Aug-08-2019, 04:54 PM - Forum: General Coding Help - Replies (1)

Please see error codes below


C:\cicdbuzz>dir
Volume in drive C is OS
Volume Serial Number is 6465-B18E

Directory of C:\cicdbuzz

07/08/20..... More

Print this item

  add more than 1 metric to py script
Posted by: vanderdecken - Aug-08-2019, 02:36 PM - Forum: General Coding Help - No Replies

hi,

have a script which (amongst other mets and dims) extract the ga: sessions. it looks like this: 'metrics ': [{'expression': 'ga:sessions')] but..... More

Print this item

  tbats and pmdarima import problem
Posted by: tody18 - Aug-08-2019, 12:10 PM - Forum: Data Science - No Replies

I am trying to fit a tbats model and use the pmdarima library to find the best arima model for my time series analysis. In the first case i get the fo..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  My regex function is not ... 1 hour ago Moltar1997 perfringo General Codin...
  silent deployment Python ... 1 hour ago Bummibaer Bummibaer News and Disc...
  best way to learn python 5 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...
  Help with running PvZ Fus... 11-20, 04:46 Barber532 SledgeNE Game Developm...
Most views
  The best Prog... 579358
  Tutorial Requ... 512309
  Web Scraping ... 442277
  Newbie with P... 386330
  New Users Int... 380148
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
Divyakrishnan071 Today
ichsanputr Today
nicos18 Yesterday
Moltar1997 Yesterday
arthurlouiss Yesterday

User Panel Messages

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