Latest questions in Python

0 votes
0 answers

lmList, bbox = detector.findPosition(img) ValueError: not enough values to unpack (expected 2, got 0)

can anyone please help me, tried those ...READ MORE

Jun 22, 2022 in Python by Webinar

edited Mar 4 62 views
0 votes
0 answers

How to highlight cell value in dataframe that exceeds mean of its column

I have a df with where I ...READ MORE

Jun 10, 2022 in Python by Pavan

edited Mar 4 40 views
0 votes
0 answers

IndentationError: expected an indented block

this is my code  stemming = PorterStemmer() corpus = ...READ MORE

Jun 8, 2022 in Python by anonymous

edited Mar 4 39 views
0 votes
0 answers

Module 'numpy.core' has no attribute 'numerictypes' (Error)

from imageai.Detection import ObjectDetection detector = ObjectDetection() detector.setModelTypeAsTinyYOLOv3() detector.setModelPath("BrainTumor10EpochsCategorical.h5") detector.loadModel() detection = ...READ MORE

Jun 3, 2022 in Python by Abdullah Celal

edited Mar 4 43 views
0 votes
0 answers

How to prettyprint a JSON file?

May 27, 2022 in Python by Kichu
• 19,040 points
712 views
0 votes
0 answers

pip3: command not found but python3-pip is already installed

I am not able to use  pip3 ...READ MORE

May 27, 2022 in Python by Kichu
• 19,040 points
4,039 views
0 votes
0 answers

Extract a page from a pdf as a jpeg

How can I  save a certain page ...READ MORE

May 26, 2022 in Python by Kichu
• 19,040 points
665 views
0 votes
0 answers

How do I access environment variables in Python?

May 26, 2022 in Python by Kichu
• 19,040 points
935 views
0 votes
0 answers

Python - TypeError: Object of type 'int64' is not JSON serializable

My data frame has store names and ...READ MORE

May 26, 2022 in Python by Kichu
• 19,040 points
2,752 views
0 votes
0 answers

Find the minimum strength someone must have in the beginning so that he can cross N cells (Interview question)

Problem Statement: Mustafa wants to cross a dungeon. ...READ MORE

May 26, 2022 in Python by Kichu
• 19,040 points
2,468 views
0 votes
0 answers

how to merge two data frames based on particular column in pandas python?

I want to  merge two data frames: df1 company,standard tata,A1 cts,A2 dell,A3 df2 company,return tata,71 dell,78 cts,27 hcl,23 I ...READ MORE

May 26, 2022 in Python by Kichu
• 19,040 points
724 views
0 votes
0 answers

memory error in python

I am working on a  program that ...READ MORE

May 26, 2022 in Python by Kichu
• 19,040 points
829 views
0 votes
0 answers

How can I install XGBoost package in python on Windows

I am using windows 64bit os and ...READ MORE

May 26, 2022 in Python by Kichu
• 19,040 points
700 views
0 votes
0 answers

How do I do a case-insensitive string comparison?

How can I do case-insensitive string comparison ...READ MORE

May 26, 2022 in Python by Kichu
• 19,040 points
607 views
0 votes
0 answers

ModuleNotFoundError: No module named 'speechemotionrecognition' How to install speechemotionrecognition in python

this is my code:       import pyAudioAnalysis, speechemotionrecognition       from speechemotionrecognition.dnn ...READ MORE

May 25, 2022 in Python by zhang

edited Mar 4 128 views
0 votes
0 answers

How to input matrix (2D list) in Python?

I am working on a code that ...READ MORE

May 24, 2022 in Python by Kichu
• 19,040 points
1,264 views
0 votes
0 answers

dlib installation on Windows 10

 I have the python app running great ...READ MORE

May 24, 2022 in Python by Kichu
• 19,040 points
1,436 views
0 votes
0 answers

How do I convert a datetime to date?

How do I convert a datetime.datetime object ...READ MORE

May 24, 2022 in Python by Kichu
• 19,040 points
798 views
0 votes
0 answers

Why am I getting a FileNotFoundError?

I am working on a program that ...READ MORE

May 24, 2022 in Python by Kichu
• 19,040 points
561 views
0 votes
0 answers

TypeError: 'type' object is not subscriptable when indexing in to a dictionary

I use dict to shorten things as ...READ MORE

May 24, 2022 in Python by Kichu
• 19,040 points
1,605 views
0 votes
0 answers

iloc giving 'IndexError: single positional indexer is out-of-bounds'

I was trying to encode some information ...READ MORE

May 23, 2022 in Python by Kichu
• 19,040 points
1,863 views
0 votes
0 answers

Relative imports - ModuleNotFoundError: No module named x

I have these  two files: test.py config.py These are the following ...READ MORE

May 23, 2022 in Python by Kichu
• 19,040 points
1,961 views
0 votes
0 answers

Flask ImportError: No Module Named Flask

I followed this flask tutorial: http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world. I am getting ...READ MORE

May 23, 2022 in Python by Kichu
• 19,040 points
2,459 views
0 votes
0 answers

Python: ValueError

Hello, I am getting the error "ValueError: could ...READ MORE

May 22, 2022 in Python by Ankita

edited Mar 4 106 views
0 votes
0 answers

I am getting a ValueError in python

embeddings_index = {} embedding_dim = 100 f = 'glove.twitter.27B.100d.txt' for ...READ MORE

May 22, 2022 in Python by Ankita

edited Mar 4 112 views
0 votes
0 answers

SUMMARY FUNCTION SHOWS NULL AND INTEGER IN R PROGRAMMING

I have data with Gender and protein expression ...READ MORE

May 21, 2022 in Python by Maria-Ornella

edited Mar 4 103 views
0 votes
0 answers

Writing a pandas DataFrame to CSV file

I want to write a pandas data ...READ MORE

May 21, 2022 in Python by Kichu
• 19,040 points
823 views
0 votes
0 answers

Python's equivalent of && (logical-and) in an if-statement

This is not  working : if cond1 && cond2: Can ...READ MORE

May 20, 2022 in Python by Kichu
• 19,040 points
491 views
0 votes
0 answers

ModuleNotFoundError: No module named 'sklearn'

I am using Anaconda and Python 3.6.1 ...READ MORE

May 20, 2022 in Python by Kichu
• 19,040 points
980 views
0 votes
0 answers

Constructing pandas DataFrame from values in variables gives "ValueError: If using all scalar values, you must pass an index"

If  I have two variables as follows: a ...READ MORE

May 19, 2022 in Python by Kichu
• 19,040 points
2,446 views
0 votes
0 answers

No acceptable C compiler found in $PATH when installing python

I followed this post to install a ...READ MORE

May 19, 2022 in Python by Kichu
• 19,040 points
1,596 views
0 votes
0 answers

Error in Python script "Expected 2D array, got 1D array instead:"?

I wanted to make this ML prediction: import ...READ MORE

May 18, 2022 in Python by Kichu
• 19,040 points
1,696 views
0 votes
0 answers

i am having error in python while working on speech recognition module

import speech_recognition as sr def takecommand(): ...READ MORE

May 14, 2022 in Python by anonymous

edited Mar 4 115 views
0 votes
0 answers

PermissionError: [Errno 13] Permission denied

This is the code : def download(): ...READ MORE

May 14, 2022 in Python by Kichu
• 19,040 points
3,456 views
0 votes
0 answers

"getaddrinfo failed", what does that mean?

I am getting this error when launching ...READ MORE

May 13, 2022 in Python by Kichu
• 19,040 points
1,190 views
0 votes
0 answers

'str' object has no attribute 'decode'. Python 3 error?

Code: import imaplib from email.parser import HeaderParser conn = imaplib.IMAP4_SSL('imap.gmail.com') conn.login('example@gmail.com', ...READ MORE

May 13, 2022 in Python by Kichu
• 19,040 points
1,342 views
0 votes
0 answers

Python Traceback (most recent call last)

The error message: Traceback (most recent call last): ...READ MORE

May 12, 2022 in Python by Kichu
• 19,040 points
3,533 views
0 votes
0 answers

ImportError: No module named pip

I installed setuptools 1.0 with ez_setup.py from https://pypi.python.org/pypi/setuptools. Then ...READ MORE

May 12, 2022 in Python by Kichu
• 19,040 points
1,890 views
0 votes
0 answers

OpenCV NoneType object has no attribute shape

I  am working on Raspberry Pi with ...READ MORE

May 9, 2022 in Python by Kichu
• 19,040 points
3,573 views
0 votes
0 answers

JSONDecodeError: Expecting value: line 1 column 1 (char 0)

I am facing an error when decoding ...READ MORE

May 9, 2022 in Python by Kichu
• 19,040 points
7,576 views
0 votes
0 answers

How does collections.defaultdict work?

I've read the examples in python docs, ...READ MORE

May 9, 2022 in Python by Edureka
• 13,650 points

edited Mar 4 107 views
0 votes
0 answers

How to change a string into uppercase

How can I convert a string into ...READ MORE

May 9, 2022 in Python by Edureka
• 13,650 points

edited Mar 4 109 views
0 votes
0 answers

raw_input function in Python

What is the raw_input function? Is it ...READ MORE

May 9, 2022 in Python by Edureka
• 13,650 points

edited Mar 4 115 views
0 votes
0 answers

What does %s mean in a Python format string?

What does %s mean in Python? And what does ...READ MORE

May 9, 2022 in Python by Edureka
• 13,650 points

edited Mar 4 114 views
0 votes
0 answers

How do I sort a dictionary by value?

I've created a dictionary of values from ...READ MORE

May 9, 2022 in Python by Edureka
• 13,650 points

edited Mar 4 118 views
0 votes
0 answers

What do __init__ and self do in Python?

936 429 I'm learning the Python programming language and ...READ MORE

May 9, 2022 in Python by Edureka
• 13,650 points

edited Mar 4 111 views
0 votes
0 answers

Code for Greatest Common Divisor in Python

The greatest common divisor (GCD) of a ...READ MORE

May 9, 2022 in Python by Edureka
• 13,650 points

edited Mar 4 109 views
0 votes
0 answers

How does Python's super() work with multiple inheritance?

How does super() work with multiple inheritance? For example, ...READ MORE

May 9, 2022 in Python by Edureka
• 13,650 points

edited Mar 4 110 views
0 votes
0 answers

Why does Python give the "wrong" answer for square root? What is integer division in Python 2?

x = 16 sqrt = x**(.5) #returns ...READ MORE

May 9, 2022 in Python by Edureka
• 13,650 points

edited Mar 4 136 views
0 votes
0 answers

What does an 'r' represent before a string in python?

I want to understand why do we ...READ MORE

May 9, 2022 in Python by Edureka
• 13,650 points

edited Mar 4 106 views