Trending questions in Python

0 votes
1 answer

Reading powershell clixml in python

PowerShell's Extended Type System supports auxiliary properties ...READ MORE

Oct 9, 2018 in Python by Priyaj
• 58,020 points
962 views
+5 votes
6 answers

Lowercase in Python

You can simply the built-in function in ...READ MORE

Apr 11, 2018 in Python by hemant
• 5,790 points
4,401 views
0 votes
1 answer

Python error: No handlers could be found for logger “xhtml2pdf”

The only solution is to define a ...READ MORE

Sep 5, 2018 in Python by Priyaj
• 58,020 points
2,409 views
0 votes
1 answer

What is the difference between Python and IPython?

There are few differences between Python and ...READ MORE

Jul 26, 2018 in Python by Priyaj
• 58,020 points
4,174 views
0 votes
1 answer

Start an iteration on first row of a group Pandas

For anyone needing this information in the ...READ MORE

Sep 6, 2018 in Python by Priyaj
• 58,020 points
2,348 views
0 votes
1 answer

a basic question about “while true”

while True means loop forever. The while ...READ MORE

Jun 4, 2018 in Python by aryya
• 7,460 points
6,398 views
0 votes
1 answer

how to get mongoengine object id in flask program

Check out the documentation, Document.objects is a QuerySet object. You seem to be ...READ MORE

Oct 10, 2018 in Python by Priyaj
• 58,020 points
877 views
0 votes
1 answer

Hide a window in the constructor immediately after it is created?

Apparently it seems that the code should ...READ MORE

Sep 28, 2018 in Python by Priyaj
• 58,020 points
1,393 views
0 votes
1 answer

Python: Lambda function in List Comprehensions

The first one create a single lambda ...READ MORE

Aug 27, 2018 in Python by Priyaj
• 58,020 points
2,733 views
0 votes
1 answer

How does insertion work in Python?

Or, this one: def ins_sort(k): ...READ MORE

Oct 8, 2018 in Python by charlie_brown
• 7,720 points
905 views
0 votes
1 answer

How to use BeautifulSoup for Webscraping

Your code is good until you get ...READ MORE

Sep 6, 2018 in Python by Priyaj
• 58,020 points
2,277 views
0 votes
1 answer

Conflicting dependencies of pypyodbc and blpapi

I figured out that pypyodbc only works ...READ MORE

Oct 9, 2018 in Python by Priyaj
• 58,020 points
845 views
0 votes
1 answer

What is Python division

You're using Python 2.x, where integer divisions ...READ MORE

Oct 17, 2018 in Python by Priyaj
• 58,020 points
499 views
+1 vote
1 answer

How to estimate number of clusters through EM in scikit-learn

For future reference, the fixed function looks ...READ MORE

Sep 26, 2018 in Python by Priyaj
• 58,020 points
1,349 views
+1 vote
6 answers

How python trim works

You want strip(): myphrases = [ " Hello ...READ MORE

Oct 18, 2018 in Python by up4rescue
1,612 views
0 votes
1 answer

Why Django modeltranslation too many feilds

You can use the below link to ...READ MORE

Oct 1, 2018 in Python by Priyaj
• 58,020 points
1,145 views
0 votes
1 answer

What does enumerate mean?

The enumerate() function adds a counter to ...READ MORE

Oct 11, 2018 in Python by SDeb
• 13,300 points
712 views
0 votes
1 answer

Key error in Python

A KeyError occurs when the Key doesn't ...READ MORE

Sep 20, 2018 in Python by SDeb
• 13,300 points
1,568 views
0 votes
1 answer

How to find index from raw and column in python?

You probably want to use np.ravel_multi_index: import numpy as ...READ MORE

Sep 24, 2018 in Python by Priyaj
• 58,020 points
1,392 views
0 votes
1 answer

Conflicting dependencies of pypyodbc and blpapi

I figured out that pypyodbc only works ...READ MORE

Oct 4, 2018 in Python by Priyaj
• 58,020 points
954 views
0 votes
1 answer

LightFM does the training set need to be the same size as the test set?

I would change the wording. Often in ML, ...READ MORE

Oct 5, 2018 in Python by Priyaj
• 58,020 points
901 views
+4 votes
6 answers

Substring search in Python

Use the "in" operator in python" if "substring" ...READ MORE

Apr 13, 2018 in Python by Nietzsche's daemon
• 4,260 points
1,455 views
0 votes
1 answer

What exactly does the .join() method do?

Look carefully at your output: 5wlfgALGbXOahekxSs9wlfgALGbXOahekxSs5 ^                 ^                 ^ I've ...READ MORE

Oct 10, 2018 in Python by SDeb
• 13,300 points
680 views
0 votes
1 answer

Cannot make connection to .accdb file using python

That link has instructions for connecting to ...READ MORE

Oct 5, 2018 in Python by Priyaj
• 58,020 points
854 views
0 votes
1 answer

What's the difference in Qt between setVisible, setShown and show/hide

show() is just a convenience function for ...READ MORE

Apr 17, 2018 in Python by anonymous
8,223 views
0 votes
1 answer

Raw_Input() Is Not Defined

For Python 3.x, use input(). For Python 2.x, ...READ MORE

Sep 17, 2018 in Python by Priyaj
• 58,020 points
1,612 views
0 votes
1 answer

How to move searchbar in Plone5

You can install the add-on Products.ContentWellPortlets and ...READ MORE

Oct 10, 2018 in Python by Priyaj
• 58,020 points
600 views
0 votes
1 answer

How can I Get Laplacian pyramid using opencv

As far as I can see you ...READ MORE

Sep 4, 2018 in Python by Priyaj
• 58,020 points
2,143 views
0 votes
1 answer

How to format strings in python?

To answer your first question... .format just seems more ...READ MORE

Oct 1, 2018 in Python by aryya
• 7,460 points
972 views
0 votes
1 answer

Why feed_dict is constructed when running epoch in PTB tutorial on Tensorflow?

Q1. feed_dict is used in this case to set ...READ MORE

Oct 3, 2018 in Python by Priyaj
• 58,020 points
876 views
0 votes
1 answer

Behaviour of increment and decrement operators in Python

When you want to increment or decrement, ...READ MORE

Jul 26, 2018 in Python by Priyaj
• 58,020 points
3,853 views
0 votes
1 answer

how to use Binary tree search in Python

The key thing to notice is that ...READ MORE

Sep 27, 2018 in Python by Priyaj
• 58,020 points
1,132 views
+1 vote
1 answer

What is the difference between range and xrange functions in Python 2.X?

xrange only stores the range params and ...READ MORE

Aug 22, 2018 in Python by Priyaj
• 58,020 points
2,579 views
0 votes
1 answer

Existing key in Python

The intended way to check for the ...READ MORE

Oct 3, 2018 in Python by SDeb
• 13,300 points
793 views
0 votes
1 answer

Get the Current time in Python

To get the current date and time ...READ MORE

Oct 3, 2018 in Python by SDeb
• 13,300 points
775 views
0 votes
1 answer

How to use a global variable in function?

The global variable can be used in ...READ MORE

Sep 27, 2018 in Python by SDeb
• 13,300 points
1,014 views
0 votes
0 answers

How to replace id with attribute corresponding to id of another table?

Using SQLAlchemy, I can query a bunch ...READ MORE

Oct 3, 2018 in Python by eatcodesleeprepeat
• 4,710 points
795 views
0 votes
1 answer

Convert string list of dict from csv into JSON object in python

You can use the ast module Ex: import ast s = """[{'10': ...READ MORE

Sep 24, 2018 in Python by Priyaj
• 58,020 points
1,139 views
0 votes
2 answers

Unable to use print statement in python3

print will work when you use print("Your ...READ MORE

Feb 14, 2019 in Python by Shashank
• 1,370 points
1,465 views
0 votes
1 answer

How to Reverse a list in Python

You can use the reversed function in ...READ MORE

Sep 29, 2018 in Python by SDeb
• 13,300 points
941 views
+1 vote
1 answer

How to use GUI that comes with Python to test your code?

Hey @alex0809, When your testing a website ...READ MORE

Sep 24, 2018 in Python by Vardhan
• 13,150 points
1,078 views
0 votes
1 answer

Modify int in place

Use a list rather than a tuple: my_container ...READ MORE

Sep 14, 2018 in Python by Priyaj
• 58,020 points
1,552 views
+1 vote
1 answer

Run tally of events within a given period using datetime

If you have access to pandas, pd.Series.cumcount is one way. ...READ MORE

Sep 26, 2018 in Python by Priyaj
• 58,020 points
967 views
0 votes
1 answer

External command in Python

you can check the subprocess module in ...READ MORE

Oct 1, 2018 in Python by SDeb
• 13,300 points
780 views
+1 vote
1 answer

Can installin pip for python install dependencies aswell?

As long as the dependency is listed ...READ MORE

Sep 26, 2018 in Python by Priyaj
• 58,020 points
944 views
0 votes
2 answers

how to print the current time using python?

print(datetime.datetime.today()) READ MORE

Feb 14, 2019 in Python by Shashank
• 1,370 points
1,366 views
0 votes
1 answer

Crawling after login in Python

You missed a few login data forms, ...READ MORE

Sep 7, 2018 in Python by Priyaj
• 58,020 points
1,780 views
0 votes
1 answer

What is the difference between python's file I/O system when using 'w' and 'wb'?

Only in Windows, in the latter case, ...READ MORE

Sep 11, 2018 in Python by charlie_brown
• 7,720 points
1,698 views
0 votes
1 answer

How can I build a recursive function in python?

I'm wondering whether you meant "recursive". Here ...READ MORE

Sep 19, 2018 in Python by Priyaj
• 58,020 points
1,220 views
0 votes
1 answer

How does Python know whether a variable in the class is a method or a variable?

In python objects/variables are wrapped into methods ...READ MORE

Sep 18, 2018 in Python by aryya
• 7,460 points
1,251 views