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,280
» Latest member: MileHigh303
» Forum threads: 38,791
» Forum posts: 175,869

Full Statistics

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

Latest Threads
Brazil Python Help to aut...
Forum: Jobs
Last Post: MileHigh303
3 hours ago
» Replies: 0
» Views: 17
My goal to be hired worki...
Forum: News and Discussions
Last Post: mamta25
Today, 06:15 AM
» Replies: 4
» Views: 1,460
[SOLVED] [BeautifulSoup] ...
Forum: Web Scraping & Web Development
Last Post: Winfried
Yesterday, 02:10 PM
» Replies: 2
» Views: 108
How to Implement Real-Tim...
Forum: Web Scraping & Web Development
Last Post: ankitsharma32
Yesterday, 06:48 AM
» Replies: 0
» Views: 42
How to put my game loop i...
Forum: Game Development
Last Post: SledgeNE
Yesterday, 04:59 AM
» Replies: 11
» Views: 6,017
Help with running PvZ Fus...
Forum: Game Development
Last Post: SledgeNE
Yesterday, 04:46 AM
» Replies: 2
» Views: 4,288
Graph Interpolate Difficu...
Forum: General Coding Help
Last Post: deanhystad
Nov-19-2025, 08:34 PM
» Replies: 3
» Views: 315
link variable to exc bloc...
Forum: General Coding Help
Last Post: Gribouillis
Nov-19-2025, 05:03 AM
» Replies: 1
» Views: 161
PyQt6 QWidgets and system...
Forum: GUI
Last Post: Axel_Erfurt
Nov-18-2025, 06:47 PM
» Replies: 2
» Views: 227
best way to learn python
Forum: News and Discussions
Last Post: mamta25
Nov-18-2025, 04:13 PM
» Replies: 5
» Views: 3,123

 
  All possible combinations of multiplications
Posted by: Shreya10o - May-23-2020, 05:56 AM - Forum: General Coding Help - No Replies

I need all possible combinations of multiplications.
If I do this manually, it is giving a decimal number, but in this loop all valu..... More

Print this item

  If statement implemation
Posted by: jovetp - May-23-2020, 12:21 AM - Forum: General Coding Help - Replies (1)

Im trying to implement an if statement that turns the RSI values digits RED when the values is greater or equal to 70 and when its less or equal
30 i..... More

Print this item

  Plotting issue Matplotlib
Posted by: garam0 - May-23-2020, 12:11 AM - Forum: Data Science - No Replies

[python]fig = plt.figure() # create figure

ax0 = fig.add_subplot(1, 2, 1) # add subplot 1 (1 row, 2 columns, first plot)
ax1 = fig.add_subplot(1, ..... More

Print this item

  New to python via Prof Chuck Severance
Posted by: mapowing - May-23-2020, 12:08 AM - Forum: Homework - Replies (3)

Hello everyone,

I am Paul and began taking python online thru Prof Chuck Severance py4e.com.

Just wanted to ask if anyone can help in correcting..... More

Print this item

  Int error on line 70
Posted by: CrazyMakes - May-22-2020, 07:26 PM - Forum: General Coding Help - Replies (3)

[python]
import time
import os
import sys
import colorama
from colorama import Fore, Back, Style

cm = input(Fore.GREEN + "please enter your cu..... More

Print this item

  Yet another Tic-Tac-Toe (with AI, using tkinter)
Posted by: GOTO10 - May-22-2020, 04:31 PM - Forum: Code Review - Replies (9)

Hi Everyone,

Here is my stab at a Tic-Tac-Toe game using tkinter. Player controls "X" and makes moves by using numeric input. My number one goal ..... More

Print this item

  Sudoku solver with tkinter
Posted by: flash77 - May-22-2020, 04:29 PM - Forum: GUI - Replies (9)

Hello,

I've got coding experience but I'm new to python.

I'm trying to generate a sudoku solver in python using tkinter. I found online the code..... More

Print this item

  Sending data from a websocket client to another server
Posted by: lemon - May-22-2020, 04:07 PM - Forum: Web Scraping & Web Development - Replies (1)

Hello,

I'm stuck with a problem that I try to solve since a few days... Huh

I'm a beginner at programming server/client networks.
I want..... More

Print this item

  Problem with replacing strings
Posted by: donnertrud - May-22-2020, 03:08 PM - Forum: General Coding Help - Replies (3)

Hi guys,

I got a data set with Dates looking like this :

Jan. 01
Feb. 01
Mar. 01

and so on. It seems Python can't transform this kind of da..... More

Print this item

  What should I do the character comes to the door the background changes in to white.
Posted by: Killdoz - May-22-2020, 02:38 PM - Forum: GUI - No Replies

[python]
from tkinter import *
import random
import time

class Game:
def __init__(self):
self.tk = Tk()
self.tk.title("mi..... More

Print this item

  how can I change xcor and ycor of the turtle if i am using classes
Posted by: MohammedSohail - May-22-2020, 01:34 PM - Forum: General Coding Help - Replies (1)

[python]import turtle
import time

#I have been creating a flappy bird game using turtle module in python
#I have come across a problem where i ca..... More

Print this item

  Tkinter collision detection
Posted by: yeyeee - May-22-2020, 01:04 PM - Forum: GUI - Replies (3)

Im trying to get this program to work, though nothing is really happening, I am also making a collision detection, please help
[python]
import parab..... More

Print this item

  not find the resone it not prints
Posted by: yukhei - May-22-2020, 12:41 PM - Forum: Homework - Replies (3)

hi i'm lerning classs, trying to rool a dice
this is what i wirted
[python]from random import randint

class die():
def __init__(self,sides):
..... More

Print this item

  Help! Error
Posted by: bwdu - May-22-2020, 12:16 PM - Forum: General Coding Help - Replies (5)

Hİ everyone!

tosumup is a huge list so i'll only paste the begining of it
tosumup = [[5, 5, 5, 3, 3, 3, 5, 0, 0, 0, 0, 1, 0, 3, 5, 3, 0, 0, 5, 5, ..... More

Print this item

  Conditionals, while loops, continue, break (PyBite 102)
Posted by: Drone4four - May-22-2020, 10:31 AM - Forum: General Coding Help - Replies (2)

Hello Pythonistas!

I’m practicing my while loops whilst using conditionals and the .lower() class method. The material I am working with provides a..... More

Print this item

  Windows reg extractor
Posted by: shappaeye - May-22-2020, 09:45 AM - Forum: General Coding Help - Replies (4)

I have written code to extract the software version and name from the Windows 10 registry.

But i have noticed it extracts all named software folder..... More

Print this item

  could not convert string to float
Posted by: player1681 - May-22-2020, 09:32 AM - Forum: General Coding Help - Replies (4)

After reading a text file, as a column, I want to convert it from string to float; however, an error appears:

[python]with open('posx_mean_no_acop..... More


Attached Files

.txt   posx_mean_no_acoplo_tf_multiple.txt (Size: 1.18 KB / Downloads: 567)
Print this item

  Spotify playlist maker
Posted by: iTakeshi - May-22-2020, 08:40 AM - Forum: Web Scraping & Web Development - Replies (1)

Hello,
I need a script that makes a playlist from a list of links

.

Print this item

  Problem reading data from file
Posted by: player1681 - May-22-2020, 08:14 AM - Forum: General Coding Help - Replies (2)

I am trying to read a simple colum vector as

mediaXoriginal = open('posx_mean_no_acoplo_tf_multiple.txt', 'r') 
and then

[p..... More

Print this item

  ImportError: cannot import name 'MidiEvaluator' from 'parser' (Windows 10)
Posted by: spiffspaceman - May-22-2020, 07:17 AM - Forum: General Coding Help - Replies (4)

Hello,

- Clean Python 3.8.3 installation on Windows 10: uninstalled any previous python versions and installed it using "install now" ([b]wi..... More

Print this item

  Create exception handler
Posted by: oradba4u - May-22-2020, 05:11 AM - Forum: General Coding Help - Replies (7)

All:
I'm a newbie to python, but I have lots of experience in other programming languages...

I want to build an exception handling routine... If t..... More

Print this item

  RuntimeWarning: invalid value encountered in greater
Posted by: Lukas - May-22-2020, 05:11 AM - Forum: General Coding Help - Replies (2)

I have this error in the following code:

RuntimeWarning: invalid value encountered in greater
in this line:

[python] mask = ..... More

Print this item

  [split] how to read a specific row in CSV file ?
Posted by: laxmipython - May-22-2020, 04:51 AM - Forum: Homework - Replies (2)

how to read a specific row in CSV file ?

Print this item

  json to ndjson
Posted by: pythonlearner1 - May-21-2020, 10:32 PM - Forum: General Coding Help - Replies (5)

I have a output from request.get it is something like this
actual output is long and multiple of this line.

[{"a":1,"b":2,"c":3},{"x":4,"y":5,"z"..... More

Print this item

  Can you help me to understand the "asksaveasfile" and "askopenfilename" functions?
Posted by: aquerci - May-21-2020, 07:48 PM - Forum: GUI - Replies (4)

hi guys,

can you give me a simple example on how to use correctly the "filedialog.askopenfilename ()" and "filedialog.asksaveasfile ()" functions?..... More

Print this item

  C to Python code conversion print problem
Posted by: anakk1n - May-21-2020, 07:13 PM - Forum: General Coding Help - Replies (1)

Hello! I need to convert this C code I made to Python:
https://gist.github.com/anakk1n/dadf2216...10c3839af5

My python code looks like..... More

Print this item

  .xls processing with Pandas - my struggle moving from theory to practical use
Posted by: prolle - May-21-2020, 06:57 PM - Forum: Data Science - No Replies

Hi All

My first post here, I have read the posting docs, so hopefully I won't get shot down. My problem:

My skill level:
I have taken a fundame..... More

Print this item

  Query about arrays in a neural network
Posted by: juan_o_o - May-21-2020, 05:21 PM - Forum: General Coding Help - No Replies

Hello, I have created a simple neural network consisting of a numerical array in an array of size (size) = 192 and shape (shape) = (4, 48) I called it..... More

Print this item

  Bitcoin generator and wallet checker
Posted by: Anarab - May-21-2020, 04:32 PM - Forum: Code Review - Replies (2)

[align=center]This is my first ever project I'm pretty new to programming in general only started a couple of months ago, so I would like for anyone t..... More

Print this item

  not finding the resone for the error
Posted by: yukhei - May-21-2020, 04:30 PM - Forum: Homework - Replies (3)

im lerning classs and i have this error Wall

[python]
def increment_odometer(self,miles):
self.odometer_reading += miles

class Batte..... More

Print this item

  trying to do a vlookup in pandas
Posted by: eeps24 - May-21-2020, 03:12 PM - Forum: General Coding Help - Replies (1)

Trying to do a "vlookup" with pandas. I have two data frames loaded. I suppose I would need to do a merge to connect both data frames. But my question..... More

Print this item

  Supposed to print out even numbers
Posted by: DallasPCMan - May-21-2020, 02:59 PM - Forum: General Coding Help - Replies (4)

When I execute this code:

[python]
list1 = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
num = 0
# using while loop
while (num < len(list1)):

#..... More

Print this item

  not finding the resone for the error
Posted by: yukhei - May-21-2020, 02:32 PM - Forum: Homework - Replies (3)

im currntly lerning about classs and child class and parint


[python]class Car:
"""a simple attempt to represent a car."""

def __init__(self..... More

Print this item

  Trying to write and execute first Python script
Posted by: garvind25 - May-21-2020, 02:04 PM - Forum: General Coding Help - Replies (3)

Hi,

I am new to Python and trying to learn it. I have Python 3.8 with IDLE environment and Anaconda 3 installed in my system (The system has Wind..... More

Print this item

  Build a simple Webapp with Python Flask and mariaDB
Posted by: newbie1 - May-21-2020, 12:37 PM - Forum: Web Scraping & Web Development - Replies (3)

Hi,
I've done a little PHP and Python Programming in the past. Now as a newbie in this field (Thread subject) I want to build a simple webapp for a p..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  Brazil Python Help to aut... 3 hours ago MileHigh303 MileHigh303 Jobs
  My goal to be hired worki... Today, 06:15 GnomeSweetGnome mamta25 News and Disc...
  [SOLVED] [BeautifulSoup] ... Yesterday, 14:10 Winfried Winfried Web Scraping ...
  How to Implement Real-Tim... Yesterday, 06:48 ankitsharma32 ankitsharma32 Web Scraping ...
  How to put my game loop i... Yesterday, 04:59 temlotresid6 SledgeNE Game Developm...
  Help with running PvZ Fus... Yesterday, 04:46 Barber532 SledgeNE Game Developm...
  Graph Interpolate Difficu... 11-19, 20:34 Tuurbo46 deanhystad General Codin...
  link variable to exc bloc... 11-19, 05:03 Astrobert Gribouillis General Codin...
  PyQt6 QWidgets and system... 11-18, 18:47 stevecoh1 Axel_Erfurt GUI
  best way to learn python 11-18, 16:13 dutch mamta25 News and Disc...
  [SOLVED] Access keys and ... 11-17, 11:47 Winfried Winfried General Codin...
Most views
  The best Prog... 579207
  Tutorial Requ... 511972
  Web Scraping ... 442152
  Newbie with P... 386241
  New Users Int... 379213
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+ 12109
buran 8196
snippsat 7389
deanhystad 6915
metulburr 5151
Top referrers
Googlepro 23
python 6
metulburr 6
NonEntity 5
buran 3
Newest members
MileHigh303 Today
ndx101 Today
OtiliaBecker Today
NAGASOWMYAGUNDU Yesterday
shipa1autotransport Yesterday

User Panel Messages

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