Trending questions in Python

0 votes
0 answers

# cmds.select(myPlane. vtx[*]) # ^ # IndentationError: unexpected indent #

#     cmds.select(myPlane. vtx[*]) #     ^ # IndentationError: unexpected indent ...READ MORE

Apr 26, 2023 in Python by anonymous

edited 4 days ago 14 views
0 votes
0 answers

invalid literal for int() with base 10: '1 2 3 4 5'

def strictlyInc(l):     for i in range(len(l)-1):         if l[i]>l[i+1]:             return "No"             break     return ...READ MORE

Apr 22, 2023 in Python by anonymous

edited 4 days ago 18 views
0 votes
0 answers

Solve this: sqrt(2+sqrt(2+sqrt(2+sqrt(2+sqrt(2+.......... How can i write this code in python? Please help me!

n= int(input("number of sqrt(2)")) If n=3.  sqrt(2+sqrt(2+sqrt(2)) answer ...READ MORE

Mar 29, 2023 in Python by Munisa

edited 4 days ago 14 views
0 votes
0 answers

How to solve the ZeroDivisionError: float division by zero after importing vpython

ZeroDivisionError: float division by zero PS E:\LearingVS> python ...READ MORE

Mar 28, 2023 in Python by Sheriff

edited 4 days ago 8 views
0 votes
1 answer

'python' is not recognized as an internal or external command

There are multiple ways you can use: 1)Use ...READ MORE

Feb 16, 2022 in Python by Nandini
• 5,480 points
17,249 views
0 votes
1 answer

Replacements for switch statement in Python?

To get the same function as a ...READ MORE

Feb 16, 2023 in Python by Rishu
• 300 points
1,427 views
0 votes
0 answers

square root of a number greater than 10^2000 in Python 3

I'd like to calculate the square root ...READ MORE

Mar 20, 2023 in Python by anonymous
• 990 points

edited 4 days ago 17 views
0 votes
0 answers

What can you use generator functions for?

I'm starting to learn Python and I've ...READ MORE

Mar 20, 2023 in Python by anonymous
• 990 points

edited 4 days ago 16 views
0 votes
0 answers

Selection Sort in Python

This may seem like a simple question ...READ MORE

Mar 20, 2023 in Python by anonymous
• 990 points

edited 4 days ago 12 views
0 votes
0 answers

how to know the day (is it Monday, Tuesday or...) of a specific date in Python

I have a pandas dataframe with one ...READ MORE

Mar 20, 2023 in Python by anonymous
• 990 points

edited 4 days ago 9 views
0 votes
0 answers

What do * and ** before a variable name mean in a function signature?

What do the * and ** mean in this code? def functionA(self, ...READ MORE

Mar 20, 2023 in Python by anonymous
• 990 points

edited 4 days ago 8 views
0 votes
1 answer

Relative imports in Python 3

Because the first statement, from.mymodule import myfunction, ...READ MORE

Feb 16, 2023 in Python by Rishu
• 300 points
1,301 views
0 votes
0 answers

Crop a video in python

I am wondering to create a function ...READ MORE

Mar 16, 2023 in Python by anonymous
• 990 points

edited 4 days ago 18 views
0 votes
0 answers

What is the most efficient way of finding all the factors of a number in Python?

Can someone explain to me an efficient ...READ MORE

Mar 16, 2023 in Python by anonymous
• 990 points

edited 4 days ago 15 views
0 votes
0 answers

Why do Python classes inherit object?

Why does the following class declaration inherit ...READ MORE

Mar 16, 2023 in Python by anonymous
• 990 points

edited 4 days ago 15 views
0 votes
0 answers

How can I get the source code of a Python function?

Suppose I have a Python function as ...READ MORE

Mar 16, 2023 in Python by anonymous
• 990 points

edited 4 days ago 13 views
0 votes
0 answers

How can I get the source code of a Python function?

Suppose I have a Python function as ...READ MORE

Mar 16, 2023 in Python by anonymous
• 990 points

edited 4 days ago 10 views
0 votes
0 answers

Python - Count how many times keywords stored in a list appear in text

I have a list KeywordList of 20k+ ...READ MORE

Mar 16, 2023 in Python by anonymous
• 990 points

edited 4 days ago 9 views
0 votes
0 answers

Convert decimal to binary in python

Is there any module or function in ...READ MORE

Mar 15, 2023 in Python by anonymous
• 990 points

edited 4 days ago 15 views
0 votes
0 answers

How do I count the occurrences of a list item?

Given a single item, how do I ...READ MORE

Mar 15, 2023 in Python by anonymous
• 990 points

edited 4 days ago 14 views
0 votes
0 answers

What is the difference between Python's list methods append and extend?

What's the difference between the list methods append() a ...READ MORE

Mar 15, 2023 in Python by anonymous
• 990 points

edited 4 days ago 9 views
0 votes
0 answers

List vs tuple, when to use each?

In Python, when should you use lists ...READ MORE

Mar 15, 2023 in Python by Arya
• 990 points

edited 4 days ago 8 views
0 votes
0 answers

What do the python file extensions, .pyc .pyd .pyo stand for?

What do these python file extensions mean? .pyc .pyd .pyo What ...READ MORE

Mar 15, 2023 in Python by anonymous
• 990 points

edited 4 days ago 8 views
0 votes
1 answer

Error: 'int' object is not subscriptable - Python

int([x[age1]]) You are attempting to access the age1 index ...READ MORE

Feb 16, 2023 in Python by Rishu
• 300 points
1,127 views
0 votes
1 answer

Removing duplicates in lists

1)To get rid of duplicate items, convert ...READ MORE

Feb 16, 2023 in Python by Rishu
• 300 points
1,110 views
0 votes
0 answers

Function for factorial in Python

How can I compute an integer's factorial ...READ MORE

Feb 15, 2023 in Python by Arya
• 990 points
819 views
0 votes
1 answer

modulenotfounderror: no module named 'cv2'

Firstly, please do run these following commands ...READ MORE

Feb 8, 2022 in Python by Soham
• 9,710 points
2,699 views
0 votes
1 answer

mysql.connector.errors.NotSupportedError: Authentication plugin 'caching_sha2_password' is not supported

I had the same problem and passing ...READ MORE

Oct 1, 2021 in Python by anonymous

edited 4 days ago 31,961 views
0 votes
0 answers

How can I delete a value from a list in another a list?

I have created a list with three ...READ MORE

Mar 2, 2023 in Python by anonymous

edited 4 days ago 14 views
0 votes
0 answers

Insert an item into sorted list in Python

I'm creating a class where one of ...READ MORE

Feb 22, 2023 in Python by Arya
• 990 points

edited 4 days ago 14 views
0 votes
0 answers

Determining whether an value is a whole number in Python

I would like to determine if a ...READ MORE

Feb 22, 2023 in Python by Arya
• 990 points

edited 4 days ago 11 views
0 votes
0 answers

How can I implement a tree in Python?

How can I implement a general tree ...READ MORE

Feb 22, 2023 in Python by Arya
• 990 points

edited 4 days ago 7 views
0 votes
0 answers

Convert string / character to integer in python

I want to convert a single character ...READ MORE

Feb 22, 2023 in Python by Arya
• 990 points

edited 4 days ago 7 views
0 votes
0 answers

edureka certificate

Hi, I have joined in a course in ...READ MORE

Feb 20, 2023 in Python by A

edited 4 days ago 11 views
0 votes
1 answer

How do I install the yaml package for Python?

Hello @kartik, You could try the search feature ...READ MORE

May 12, 2020 in Python by Niroj
• 82,840 points
43,766 views
0 votes
0 answers

How can I use a Linked List in Python?

How can I utilise a linked list ...READ MORE

Feb 17, 2023 in Python by Arya
• 990 points

edited 4 days ago 11 views
0 votes
0 answers

How can I take the square root of -1 using python?

When I take the square root of ...READ MORE

Feb 17, 2023 in Python by Arya
• 990 points

edited 4 days ago 7 views
0 votes
0 answers

Multiplication or sum of two numbers

Given two integer numbers, return their product ...READ MORE

Feb 17, 2023 in Python by Arya
• 990 points

edited 4 days ago 6 views
0 votes
0 answers

Print series of prime numbers in python

I was having trouble printing a run ...READ MORE

Feb 17, 2023 in Python by Arya
• 990 points

edited 4 days ago 5 views
0 votes
0 answers

How to find cube root using Python?

This is the best way I've found ...READ MORE

Feb 17, 2023 in Python by Arya
• 990 points

edited 4 days ago 4 views
0 votes
0 answers

Sum of odd numbers using while loop in python

I'm new to programming, I was asked ...READ MORE

Feb 16, 2023 in Python by Arya
• 990 points

edited 4 days ago 11 views
0 votes
0 answers

Base language of Python

What is the base language used to ...READ MORE

Feb 16, 2023 in Python by Arya
• 990 points

edited 4 days ago 10 views
0 votes
0 answers

How to declare and add items to an array in Python?

I'm trying to add items to an ...READ MORE

Feb 16, 2023 in Python by Arya
• 990 points

edited 4 days ago 6 views
0 votes
0 answers

"Develop a python program to print square root of every alternate number in the range 1 to 15." What Do You Mean by alternate number?

My most recent computer test had a ...READ MORE

Feb 16, 2023 in Python by Arya
• 990 points

edited 4 days ago 5 views
0 votes
0 answers

How to convert list to string [duplicate]

How can I use Python to turn ...READ MORE

Feb 16, 2023 in Python by Arya
• 990 points

edited 4 days ago 5 views
0 votes
0 answers

How to solve IndentationError

 for intent in intents['intents']:         ...READ MORE

Feb 11, 2023 in Python by anonymous

edited 4 days ago 5 views
0 votes
0 answers

Not all parameters are used

def update_data(self):         if self.var_dep.get()=='Select Department' or self.var_std_name.get()=='' or ...READ MORE

Feb 10, 2023 in Python by Aryazayo

edited 4 days ago 9 views
0 votes
3 answers

How to replace negative numbers in Pandas Data Frame by zero?

 If all your columns are numeric, you ...READ MORE

Dec 16, 2020 in Python by Rajiv
• 8,870 points
45,024 views
0 votes
0 answers

I am trying to execute the following python code

import logging import os  import time  def method(arg): from django.conf ...READ MORE

Feb 3, 2023 in Python by anonymous

edited 4 days ago 4 views
0 votes
1 answer

Python Math - TypeError: 'NoneType' object is not subscriptable

“TypeError: 'NoneType' object is not subscriptable” is ...READ MORE

Jan 4, 2023 in Python by Elton
• 400 points
1,224 views