Quantcast
Channel: Active questions tagged python - Stack Overflow
Browsing all 13861 articles
Browse latest View live
↧

Printing strings with UTF-8 encoded characters, e.g.: "\u00c5\u009b\"

I would like to print strings encoded like this one: "Cze\u00c5\u009b\u00c4\u0087" but I have no idea how. The example string should be printed as: "Cześć".What I have tried is:str =...

View Article


Using numpy random and pandas sample to make a random choice from a DF, not...

I have made a small script for my D&D group that, when a spell is cast, chooses whether or not another random spell gets cast, the ordinal spell gets cast, or nothing happens (with a 50%, 25%, 25%...

View Article


Optimizing Code for Computing Products from Correlation Matrix

I have a Python code that calculates products based on combinations of keys from a correlation matrix. The code works well for when the dataframe have small numbers of columns (e.g., less than 95...

View Article

Is there any solution for this error while installing odoo17

I want to install requirement for odoo 17 i run this commandpip install -r requirements.txtput get this error .... i already install visual studio 2022what should i install to solve this errori install...

View Article

404 error when doing workload anlysis using locust on OpenAI API (GPT.35)

I am trying to do some workload analysis on OpenAI GPT-3.5-TURBO using locust.from locust import HttpUser, between, taskclass OpenAIUser(HttpUser): wait_time = between(1, 2) # wait between 1 and 2...

View Article


Kanren Problem in python -> ImportError: cannot import name 'Iterator' from...

I am learning A.I. with python from Tutorials Point and I reached to the Logic Programming section,here the program is of "Matching Mathematical expressions", and they consider to import the Kanren...

View Article

Iterating dictionary and add column to dataframe

I have a dictionary consisting of several keys that have multiple values assigned to them:dict ={'key1':'val1(ex1)|val2','key2':'val3 (ex2)|val4','key3':'val5','key4':'val6|val7|val8|val9'}The single...

View Article

How to update an Azure Service Endpoint using python?

Currently I have a python function that takes the information of an Azure DevOps Service Connection. The problem is that I want to update that, and using a PUT request I always have a body problem....

View Article


why it doesn't read all the files defined on glob.glob, but only one?

I'm trying to make a code that reads a fwf txt file and convert it to a csv file. So I have a list of txt files and I want to generate csv files corresponding to the respective txt file. But instead of...

View Article


Image may be NSFW.
Clik here to view.

Having diffuclties deploying my fast-api to aws lambda?

this is the code which i am trying to host on AWS, ->[https://github.com/Husseinmdarman/BookContentToYoutubeVideos][code base]However for the life of me I am struggling, so what i have tried to do...

View Article

cannot import name 'eval_pb2' from 'object_detection.protos'

I am trying to follow this tutorialbut after running from object_detection.utils import config_utiland from object_detection.protos import pipeline_pb2I'm getting this error ImportError: cannot import...

View Article

Setting ["GOOGLE_APPLICATION_CREDENTIALS"] from a dict rather than file path

I'm trying to set the environment variable from a dict but getting and error when connecting.#service account pulls in airflow variable that contains the json dict with service_account...

View Article

Passing form input from flask to update scrapyrt

How can I take a selection from my html site and pass that to my scrapy spider so that the query is updated with new parameters and runs again?I have tried a number of ways to pass this parameter from...

View Article


Custom class that inherits LGBMClassifier doesn't work: KeyError: 'random_state'

I create a random dataset to train a LGBM model:from sklearn.datasets import make_classificationX, y = make_classification()Then I train and predict the original LGBM model with no issues:from lightgbm...

View Article

"Error in Python Code: 'ModuleNotFoundError' when importing 'pandas'"

I am encountering an issue while trying to run a Python script. The error message is 'ModuleNotFoundError', specifically related to the 'pandas' library. I have installed 'pandas' using pip, but the...

View Article


Python3 project remove __pycache__ folders and .pyc files

What is the BEST way to clear out all the __pycache__ folders and .pyc/.pyo files from a python3 project. I have seen multiple users suggest the pyclean script bundled with Debian, but this does not...

View Article

Number of constraints is zero?

My code is:from docplex.mp.model import Modelm = Model(name='allocation optimization')m1 = m.continuous_var_dict(keys=['y1-1', 'z1-1', 'w1-1', 'y1-2', 'z1-2', 'w1-2'], name=”1s_VN”)m1 = {”y1-1”: 1,...

View Article


What's a correct and good way to implement __hash__()?

What's a correct and good way to implement __hash__()?I am talking about the function that returns a hashcode that is then used to insert objects into hashtables aka dictionaries.As __hash__() returns...

View Article

Python program to find unique combinations in a list with target sums

"I need assistance in writing a Python program that takes an input list (input_set) and a list of target sums (target_sums). The goal is to find unique combinations of elements from input_set that add...

View Article

Image may be NSFW.
Clik here to view.

Groupby Method returning incorrect counts Pandas Python

As you can see in the screenshot, I can count the values of each possible value for the sentiment column, and then I can group the same data by the brand and the sentiment, but the values are obviously...

View Article
Browsing all 13861 articles
Browse latest View live