Trending questions in Python

0 votes
1 answer

Find a file in python

you can use os.walk in the following ...READ MORE

Mar 27, 2019 in Python by SDeb
• 13,300 points
534 views
0 votes
1 answer

Pandas row in printing whole structure instead of value.

Try this code, it should print only ...READ MORE

Mar 28, 2019 in Python by Siri
475 views
0 votes
1 answer

Problem with module xlsxwriter

Even if it looks like the module ...READ MORE

Jan 23, 2019 in Python by charlie_brown
• 7,720 points
3,262 views
0 votes
1 answer

socket.shutdown vs socket.close

Once a socket is no longer required, ...READ MORE

Jan 29, 2019 in Python by SDeb
• 13,300 points
2,969 views
0 votes
1 answer

Django AllAuth gives SSLError

It can be fixed by replacing: client = ...READ MORE

Mar 20, 2019 in Python by SDeb
• 13,300 points
795 views
0 votes
1 answer

How to access each pandas row at a time?

The code you are using will iterator ...READ MORE

Mar 28, 2019 in Python by Karan
437 views
0 votes
1 answer

Speeding up a numpy loop

You are allocating 10000 lists of size ...READ MORE

Mar 15, 2019 in Python by SDeb
• 13,300 points
1,001 views
0 votes
1 answer

Python using basicConfig method to log to console and file

Try this working fine(tested in python 2.7) ...READ MORE

Aug 27, 2018 in Python by Priyaj
• 58,090 points
9,643 views
0 votes
1 answer

Python - Use unique element from a set

The best way to achieve this by ...READ MORE

Mar 27, 2019 in Python by Mugdha
• 600 points
501 views
0 votes
0 answers

when do i use open in python?

also, give an example? READ MORE

Apr 2, 2019 in Python by Waseem
• 4,540 points
262 views
0 votes
0 answers

how can i print a value without newline?

can you give an example? READ MORE

Apr 1, 2019 in Python by Waseem
• 4,540 points
288 views
0 votes
1 answer

how to execute python scripts in windows?

On Windows, To run a python module without typing "python", --> ...READ MORE

Mar 27, 2019 in Python by Mohammad
• 3,230 points
462 views
0 votes
0 answers

how to remove overlapping boundaries in matplotlib?

how do i remove overlapping boundaries in ...READ MORE

Mar 26, 2019 in Python by Waseem
• 4,540 points
541 views
0 votes
1 answer

Need help bootstrapping Python module installation on Amazon EMR

Hello! The easiest way to definitely do this ...READ MORE

Feb 11, 2019 in Python by Nymeria
• 3,560 points
2,362 views
0 votes
1 answer

How to check plural & singular form of a word?

You can try with the inflect 0.2.4 ...READ MORE

Jan 3, 2019 in Python by anonymous
4,031 views
0 votes
0 answers

how to deploy bluk python yamls on kubernetes using jinja template

1.how to deploy  python  services yamls  or ...READ MORE

Mar 19, 2019 in Python by devops learner
815 views
0 votes
2 answers

what is null in python?

In python no primitive data types. python treats as ...READ MORE

Mar 13, 2019 in Python by rajesh kumar
1,109 views
0 votes
1 answer

how to convert a group of strings to integer?

a = ['1','2','3','4'] b = list(map(int,a)) print(b) this is how ...READ MORE

Mar 18, 2019 in Python by Mohammad
• 3,230 points
807 views
0 votes
1 answer

Can't Click an Element in Python Selenium After Successfully Finding It

I've encountered this problem of not being ...READ MORE

Oct 4, 2018 in Python by Priyaj
• 58,090 points
7,937 views
0 votes
1 answer

is it possible to do method overloading in python?

You cannot have two methods with the ...READ MORE

Mar 26, 2019 in Python by Mohammad
• 3,230 points
492 views
0 votes
1 answer

Inconsistent Whitespace error occurrence when using Python doctest with newline characters

Hi. It's pretty simple actually. All you ...READ MORE

Feb 12, 2019 in Python by Nymeria
• 3,560 points
2,240 views
0 votes
1 answer

what is a type error in python?

you get a type error when you ...READ MORE

Mar 8, 2019 in Python by Waseem
• 4,540 points
1,200 views
0 votes
1 answer

Batch Paypal Payments

Yes. You can have a look at ...READ MORE

Mar 25, 2019 in Python by SDeb
• 13,300 points
444 views
0 votes
2 answers

what is the procedure to the version of python in my computer?

Execute the following command on your terminal: python ...READ MORE

Mar 20, 2019 in Python by Alia
638 views
0 votes
1 answer

how do I check the length of an array in a python program?

lets say we have a list mylist = ...READ MORE

Mar 12, 2019 in Python by Mohammad
• 3,230 points
954 views
0 votes
1 answer

How to remove the duplicate values in a list?

a = [10,20,30,40,10,20,30,40,30,40,50,60] s = set(a) c = list(s) print(c) this ...READ MORE

Mar 20, 2019 in Python by Mohammad
• 3,230 points
595 views
0 votes
1 answer

how to delete a file in python?

to delete a file import os os.remove('filename') this will delete ...READ MORE

Mar 18, 2019 in Python by Mohammad
• 3,230 points
645 views
0 votes
1 answer

How to list only text files in a directory using python?

Well, you are using a complex way. ...READ MORE

Feb 4, 2019 in Python by Omkar
• 69,230 points
2,450 views
0 votes
1 answer

Program to store the details multiple employees

import random class Bank: ...READ MORE

Feb 13, 2019 in Python by Omkar
• 69,230 points
2,060 views
0 votes
0 answers

how to do subsetting in python list?

how do i access values while subsetting ...READ MORE

Mar 15, 2019 in Python by Mohammad
• 3,230 points
764 views
0 votes
1 answer

can we sort the key value pairs in a dictionary?

we can use OrderedDict import collections result = colections.Ord ...READ MORE

Mar 22, 2019 in Python by Mohammad
• 3,230 points
406 views
0 votes
1 answer

how do i print only the last two letters in a string using regular expression in python?

$ to match the end of the ...READ MORE

Mar 15, 2019 in Python by Waseem
• 4,540 points
703 views
0 votes
1 answer

I have a code that I want to use alter values between two columns in my dataset

Hi @elvin. I read your script and ...READ MORE

Mar 17, 2019 in Python by Omkar
• 69,230 points
576 views
0 votes
1 answer

how to check for exceptions in a file?

try { if (!file.exists("TextFile1.txt")) throw ...READ MORE

Mar 20, 2019 in Python by Mohammad
• 3,230 points
441 views
0 votes
1 answer

how to install pandas in python

it is very basic to install pandas if ...READ MORE

Mar 6, 2019 in Python by Waseem
• 4,540 points
1,060 views
0 votes
1 answer

How can I lookup hostname using the IP address with a timeout in Python?

Good question. I actually was stuck with ...READ MORE

Feb 6, 2019 in Python by Nymeria
• 3,560 points
2,250 views
0 votes
1 answer

Get business days between start and end date using pandas

You can use BDay() to get the ...READ MORE

Feb 15, 2019 in Python by SDeb
• 13,300 points
1,825 views
0 votes
1 answer

what is an else if statement in python?

if condition:    statement elif condition:     statement #this is how you use ...READ MORE

Mar 15, 2019 in Python by Waseem
• 4,540 points
653 views
0 votes
1 answer

How to filter HTML tags and resolve entities using Python?

Him the answer is a pretty simple ...READ MORE

Feb 13, 2019 in Python by Nymeria
• 3,560 points
1,908 views
0 votes
0 answers

Excel attachments inside another Excel file handling?

Thank you in advance. I would like open ...READ MORE

Mar 23, 2019 in Python by M
• 160 points
306 views
0 votes
1 answer

How do I check if a list is empty?

You can try the following: if not a:   print("List ...READ MORE

Mar 14, 2019 in Python by SDeb
• 13,300 points
599 views
0 votes
1 answer

How to extract values from a string or a sequence?

you could use the statements like name[index value ...READ MORE

Mar 6, 2019 in Python by Waseem
• 4,540 points
939 views
0 votes
0 answers

what is a name error in python?

why am i getting a name error ...READ MORE

Mar 8, 2019 in Python by anonymous
903 views
0 votes
0 answers

try except is not working while using hdfs command

Hi,  I am trying to run following things ...READ MORE

Mar 6, 2019 in Python by anonymous
950 views
+1 vote
2 answers

Speech (audio file, wav) to Text - getting timed out

I think the error you are getting ...READ MORE

Nov 27, 2018 in Python by Omkar
• 69,230 points
5,089 views
0 votes
3 answers

Is python version 3.7.2 supported by pycharm jetbrains IDE?

Yes it works fine.. READ MORE

Feb 28, 2019 in Python by Pratosh kumar
1,112 views
0 votes
1 answer

What is the purpose of inner class in Python?

Advantages of inner class: Logical grouping of classes: ...READ MORE

Feb 7, 2019 in Python by SDeb
• 13,300 points
2,011 views
0 votes
1 answer

Does python support the concept of global variables?

In Python, a variable declared outside of ...READ MORE

Mar 12, 2019 in Python by rajesh kumar
662 views
0 votes
1 answer

Display details of importer

Yes, you can perform the same by ...READ MORE

Mar 15, 2019 in Python by SDeb
• 13,300 points
417 views
+3 votes
2 answers

What does Python _init_ and self do?

Hey @Anirudh!  Self The self keyword is used to access ...READ MORE

Oct 31, 2018 in Python by Omkar
• 69,230 points
6,090 views