Skip to main content

Questions tagged [python]

Python is an interpreted, general-purpose high-level programming language whose design philosophy emphasizes code readability. Use the python tag for all Python related questions. If you believe your question may be even more specific, you can include a version specific tag such as python-3.x.

2 votes
1 answer
38 views

Make replacement in Python

I'm working on a replacement for make written in Python. Instead of a Makefile, you create a Wormfile.py. This file gets imported dynamically and a Context object ...
Daniel Walker's user avatar
-2 votes
0 answers
36 views

Is this comb-filtering behavior genuine or a result of aliasing? [closed]

I'm solving a non-linear ODE with some input signal. The signals consist mostly 0, with 1 at a given frequency up to a given ...
knods's user avatar
  • 1
2 votes
4 answers
1k views

Python project to scrape webpages and build text datasets for ML purposes

Context I'm returning to Python development after a break and actively learning AI/ML. As part of my learning journey, I'm building a dozen pet projects to strengthen my skills. This is my first ...
Rustem K's user avatar
5 votes
3 answers
908 views

Moving ball simulation within a donut

How do I optimise my code more? The goal is to have my code work with more than 200 moving balls, but that takes forever right now and doesn't look smooth at all. Furthermore, I can't get the sizing ...
Theron_Isengard's user avatar
2 votes
1 answer
66 views

Managing a global backend/device state when making a deep learning framework

I have been making a deep learning framework modelled after Pytorch in pure Python. I have made good progress but my framework is currently not seamless to use because the end user of the framework ...
Featherball's user avatar
11 votes
5 answers
860 views

Python program that iterates over audio files with a progress bar interface

I have a utility that updates, transcodes and renames audio files. Previously I used a function that simply yielded every file that was a good match (based on file extension). As some tasks can take ...
it_serf's user avatar
  • 111
10 votes
4 answers
650 views

Split flap clock stepper code

I've built a Split Flap Clock, and the code has grown quite a lot, and although it does work in its current state, I am wondering if it could be cleaned up. The whole thing runs on an ESP32 and is ...
Besi's user avatar
  • 265
2 votes
2 answers
96 views

Heat Diffusion Equation Solver

I'm implementing a numerical solver for the 1D diffusion (heat) equation using an iterative method. The initial temperature distribution is a Gaussian profile, which should theoretically smooth out ...
PlasmaPhyscsi's user avatar
4 votes
2 answers
494 views

Finding a sequence of xors to change a to b

I'm resolving a problem from CodeForces: C. Beautiful XOR. This is what the code is supposed to do: You have two numbers a and b. You must transform a into b using XOR operations (...
Jared McCarthy's user avatar
2 votes
2 answers
108 views

Calculation of liquid propellant nozzles

I'm calculating the injectors, and I've added the complete calculation code and tested it using pytest. Can you suggest a better way to structure the code so that I ...
Андрей Александров's user avatar
6 votes
2 answers
628 views

Python calculator application

What do you think about my calculator application in Python? Are there any hidden bugs that I haven't noticed yet? Let me know about them. Note: to be able to run this program you need first to ...
whiteman808's user avatar
9 votes
4 answers
799 views

Find the smallest semiprime satisfying a bunch of conditions

The purpose of this code is to find the smallest semiprime \$s = a b\$ satisfying a bunch of conditions stated in the Math.SE question What is the smallest "prime" semiprime?. The conditions ...
mezzoctane's user avatar
6 votes
2 answers
449 views

Number-guessing game on command line

I am just starting coding, and this is my attempt at the famous number-guessing game. Any and all feedback and criticism is greatly appreciated. ...
Payton Newman's user avatar
4 votes
4 answers
1k views

Program that allocates time to tasks based on priority

...
Itay Yahav's user avatar
10 votes
4 answers
1k views

Yet Another Python Weather Visualizer using Open-Meteo

As a personal project to build my portfolio, I've created a simple weather app that displays temperature, precipitation, and wind for any given city. This is my first time building a GUI using ...
Ben A's user avatar
  • 10.8k

15 30 50 per page
1
2 3 4 5
1039