How do I solve this python Interview Question problem [closed]
The problem is an over simplification of the flow of liquid. - A terrain is given as a grid of cells of random elevations. The grid is always odd sized and is always a square - A liquid is poured at...
View ArticleThe BLEND_RGB_MULT is changing my image t obe fully transparent and the...
When I use the BLEND_RGB_MULT flag to blit an image of a flashlight beam it changes the beam transparent and the transparent parts black as shown hereImage of Flashlight beamIm using pygame zero as it...
View ArticleHow to scrape table with BeautifulSoup?
I'm trying to scrape data from this website https://evanalytics.com/nfl/stats/ but I'm not having success. I'm trying for BeautifulSoup.import requests from bs4 import BeautifulSoup import pandas as pd...
View Articlesentry sdk custom performance integration for python app
Sentry can track performance for celery tasks and API endpointshttps://docs.sentry.io/product/performance/I have custom script that are lunching by crone and do set of similar tasksI want to...
View ArticleHow to change the anchor value in MDFloatingActionButtonSpeedDial in KivyMD?
I have been working with kivymd to develop a mobile application. But I was having a problem regarding MDFloatingActionButtonSpeedDial. I wanted to set the anchor value in...
View ArticleCreate Coloring book page from image
I want to play and learn a little bit with image processing.I found a page that converts any image to a coloring book sketch and it does this really well.Original:Sketch:I would like to rebuild...
View ArticleFlipping The Pairs
The program asks for a number and then prints out all the positive integer values from 1 up to the number. However, the order of the numbers is changed so that each pair or numbers is flipped. That is,...
View ArticleHow to set version as datetime in pyproject.toml
Here is the pyproject.toml:name = "hello_world"version = "1.2.3"I want to change the version to datetime:from datetime import datetimeversion = datetime.now().strftime("%Y.%m.%d")How to set it in the...
View ArticleFinding the maximum value between two columns where one of them is shifted...
My DataFrame is:df = pd.DataFrame( {'a': [20, 9, 31, 40],'b': [1, 10, 17, 30], })Expected output: Creating column c and name a b c name0 20 1 20 NaN1 9 10 20 NaN2 31 17 17 NaN3 40 30 40 a Steps:a) c is...
View ArticleHow to ping a web server in Python 3.10
Alrighty, time to ask a very stupid/obvious question. I need to ping a webserver/website to see if it's valid, using the ICMP protocol. You know...ping facebook.com. My code generates a bunch of TLD's,...
View ArticleHow to use an inner class as a type annotation in another inner class?
I have the next structure of classes:class Root: @dataclass class Leaf: pass @dataclass class Node: leaf: LeafThe problem is PyCharm doesn't see Leaf class, I also tried to specify it as leaf:...
View ArticleConsistent order of tracks in mediainfo library (pymediainfo)
I would like to get a consistent ordering of tracks from mediainfo - in other words, for a given media file, the order should be the same every time the code is run, on any machine.(Assuming for now...
View Articlehow find the same xml element repeatedly in a string through regex
I want to find the multiple Same xml element repeatedly present in a string trough regex (but it contain different value in the xml element).I tried but unable to find the correct coding in python. how...
View ArticleWhy am I getting a module not found error when I try to use Conv1D from Keras?
I want to import Conv1D from keras.layers like this:import tensorflow.keras.convolutional.Conv1DHowever, I can't solve this error:ModuleNotFoundError: No module named 'tensorflow.keras.convolutional'I...
View ArticleShowing information when mouse over on scatter plot
I've been struggling on showing correct information on the scatter plot. Here is a example.import matplotlib.pyplot as pltimport mplcursorsdata = [ ["Name1", 10, 20], ["Name2", 30, 40], ["Name3", 50,...
View Articledotenv install error: "error: invalid command 'dist_info'"
I'm getting an error installing dotenv on macOS:Collecting dotenv Using cached dotenv-0.0.5.tar.gz (2.4 kB) Installing build dependencies ... done Getting requirements to build wheel ... done...
View ArticleMap Integration and custom radius creation [closed]
I have a doubt regarding integrating Google API.I am planning on developing an app which has a specific requirement. For example, if I am fixing a route from point A to point B, I need my map to...
View Articlehow to print pyramid pattern as an array/list of strings [closed]
I want to print pyramid pattern like this:when n=3 [" * "," *** ", "*****"]when n=6 [" * ", " *** ", " ***** ", " ******* ", " ********* ", "***********"]When i use the below code as n=5, i...
View ArticleShow a Wolfram Mathematica Plot from within Python
I need to show a plot created by the Wolfram Mathematica application used from within a Python script.So far I have written the following code, but I do not know how I should show the information...
View Articlehow to solve 'Error Dict' object is not callable error [closed]
views.pyfrom django.contrib import messagesfrom django.shortcuts import render, redirectfrom clgapp.forms import StudentFormdef student_form(request): if request.method == 'POST': form =...
View Article