Latest questions in Python

0 votes
1 answer

How to count the number of elements in a list?

To count the number of elements of ...READ MORE

May 27, 2019 in Python by Nisa
• 1,090 points
4,626 views
0 votes
1 answer

How to check if a list is empty in python? [closed]

To check if a list is empty ...READ MORE

May 27, 2019 in Python by Nisa
• 1,090 points
754 views
0 votes
1 answer

What are the different types of data types one can use in Python?

Python provides an array of built-in constants, ...READ MORE

May 28, 2019 in Python by Harsh
• 260 points
3,046 views
0 votes
1 answer

What are the best IDE/platform to write code in Python

Just as any other programming language, even ...READ MORE

May 28, 2019 in Python by Harsh
• 260 points
531 views
0 votes
1 answer

How do you convert two lists into a dictionary?

There are three different ways of converting ...READ MORE

May 27, 2019 in Python by Taj
• 1,080 points
17,582 views
0 votes
0 answers

How can you print the full traceback without affecting the program?

can you give an example? READ MORE

May 27, 2019 in Python by Waseem
• 4,540 points
261 views
0 votes
1 answer

What is timedelta in python?

It represents a duration which is basically ...READ MORE

Aug 7, 2019 in Python by Wajiha
• 1,950 points
563 views
0 votes
1 answer

Django Postgresql syncdb error

If you're trying to connect to a ...READ MORE

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

Sphinx: local conf for a page?

As far as I know there's no ...READ MORE

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

Problem in real time matplotlib plotting

Hi Sucheta, The error I can see in ...READ MORE

May 24, 2019 in Python by sampriti
• 1,120 points
1,153 views
0 votes
1 answer

How do I convert type of an array in python?

Use the following command to change the ...READ MORE

May 24, 2019 in Python by Kishore
836 views
0 votes
1 answer

assert keyword in python is used for what purpose?

The assert keyword is used while debugging ...READ MORE

May 24, 2019 in Python by Taj
• 1,080 points
3,468 views
0 votes
1 answer

Is it possible to create an array with all values as zero in python?

You can use  np.zeros(4,3) This will create a 4 ...READ MORE

May 24, 2019 in Python by Anjali
877 views
0 votes
1 answer

How do I create 3 X 4 array of random numbers between 0 and 100 using python?

Use numpy in the following manner: np.random.rand(3,4)*100 When you ...READ MORE

May 24, 2019 in Python by Radhika
1,922 views
0 votes
1 answer

Create 3*4 array of random numbers - Python

To create different arrays like random arrays:  np.random.rand(3,4) ...READ MORE

May 24, 2019 in Python by Umer
1,476 views
0 votes
1 answer

Save NumPy arrays to File

Try this: np.savetxt('file.txt',arr,delimiter=' ') will save to a text ...READ MORE

May 24, 2019 in Python by Jason
1,173 views
0 votes
1 answer

Convert csv file to NumPy array

Hi @Lina, you can use this: numpy_array = ...READ MORE

May 24, 2019 in Python by Puneet
17,596 views
0 votes
0 answers

How are derived classes created dynamically from a base class in python?

Can you give an example? READ MORE

May 24, 2019 in Python by Waseem
• 4,540 points

edited May 27, 2019 by Omkar 297 views
0 votes
0 answers

What does a python type() function do?

Can you give an example? READ MORE

May 24, 2019 in Python by Waseem
• 4,540 points

edited May 27, 2019 by Omkar 294 views
0 votes
1 answer

How do I turn a list into numpy array?

Use this line: numpy_array = np.array(list) And printing/displaying the ...READ MORE

May 24, 2019 in Python by Isha
585 views
+1 vote
1 answer

How to comment multiple lines in Python?

Comments in Python begin with a # ...READ MORE

May 24, 2019 in Python by Nisa
• 180 points
894 views
0 votes
1 answer

How to install Python on Windows and set path variable?

Install python from this link https://www.python.org/downloads/ After ...READ MORE

May 24, 2019 in Python by anonymous
• 180 points
2,469 views
0 votes
1 answer

python dynamic class names

You can try the following code: classmap = ...READ MORE

May 23, 2019 in Python by ana1504.k
• 7,910 points
970 views
+1 vote
1 answer

ssh first with mysqldb in python

Setup an ssh tunnel before you use ...READ MORE

May 23, 2019 in Python by ana1504.k
• 7,910 points
2,578 views
0 votes
1 answer

Write lambda function - python

Lambda equivalent for this section of python ...READ MORE

May 23, 2019 in Python by Umer
433 views
0 votes
1 answer

Map function with example in python

The map function executes the function_object for each ...READ MORE

May 23, 2019 in Python by Imran
693 views
0 votes
1 answer

Convert python code into lambda function

This should work: add = lambda x, y ...READ MORE

May 23, 2019 in Python by Payal
6,890 views
0 votes
1 answer

How can you use a single insert statement into three tables from three different classes in python

you can use executescript() method : This is ...READ MORE

May 23, 2019 in Python by Mihir
387 views
0 votes
1 answer

Python script if-else statement doubt

The reason for this is that the else loop ...READ MORE

May 23, 2019 in Python by Rajan
822 views
0 votes
1 answer

Python: Doubt regarding private access specifier

In Python, you don't write to other ...READ MORE

May 23, 2019 in Python by Jagan
530 views
0 votes
1 answer

How can I use the sleep function in a python program?

You can use sleep as below. import time print(" ...READ MORE

Jun 10, 2020 in Python by anonymous
783 views
+2 votes
2 answers

What is the difference between print and return in python?

Return statements end the execution of a ...READ MORE

Aug 26, 2019 in Python by anonymous
7,481 views
0 votes
1 answer

PEP8 E226 recommendation

The maintainers of the PEP8 tool decide ...READ MORE

May 23, 2019 in Python by SDeb
• 13,300 points
499 views
0 votes
1 answer

X and Y or Z - ternary operator

According to the docs: The expression x and ...READ MORE

May 23, 2019 in Python by SDeb
• 13,300 points
1,418 views
0 votes
1 answer

Python: For loop to iterate class object

Refer to the below code: class Try: ...READ MORE

May 22, 2019 in Python by Raj
7,704 views
0 votes
0 answers

What is the difference between import module and from module import?

When both serves the same purpose, why ...READ MORE

May 22, 2019 in Python by Waseem
• 4,540 points
1,402 views
0 votes
0 answers

How can I make a simple webapp in python?

What is the difference between a microframework ...READ MORE

May 22, 2019 in Python by Waseem
• 4,540 points

edited May 23, 2019 by Omkar 307 views
0 votes
1 answer

Consistent versioning in Python project

This is one of the most asked ...READ MORE

May 22, 2019 in Python by SDeb
• 13,300 points
612 views
0 votes
1 answer

Tkinter to android translation

Even for native purposes, most developers would ...READ MORE

May 22, 2019 in Python by SDeb
• 13,300 points
1,843 views
0 votes
1 answer

Execute entire DAG using Airflow UI

In Airflow 1.8 and higher there is ...READ MORE

May 21, 2019 in Python by SDeb
• 13,300 points
1,622 views
0 votes
1 answer

Can't import tkinter

You can Try this code to import ...READ MORE

May 21, 2019 in Python by SDeb
• 13,300 points
1,353 views
0 votes
0 answers

how can i measure the elapsed time in python?

can you give an example? READ MORE

May 21, 2019 in Python by Waseem
• 4,540 points
452 views
0 votes
1 answer

how can i use the sum function in a python list?

If there is list =[1,2,4,6,5] then use ...READ MORE

Apr 23, 2020 in Python by anonymous
3,495 views
0 votes
1 answer

How do I use lambda() with reduce() in python?

The reduce() function in Python takes in ...READ MORE

May 20, 2019 in Python by Umer
1,663 views
0 votes
1 answer

How is lambda() used with map() in python?

The map() function in Python takes in ...READ MORE

May 20, 2019 in Python by Takeshi
632 views
0 votes
1 answer

How Lambda() is used with filter() in python?

The filter() function in Python takes in ...READ MORE

May 20, 2019 in Python by Rakshi
588 views
0 votes
1 answer

Difference between a normal def defined function and lambda function in python?

Have a look at this code: # Python ...READ MORE

May 20, 2019 in Python by Trisha
6,247 views
0 votes
1 answer

What is a tuple in python?

A tuple is a collection data type ...READ MORE

May 21, 2019 in Python by Mohammad
• 3,230 points
806 views
0 votes
1 answer

What are the naming conventions for variables and data types in python?

There are certain rules that we have ...READ MORE

May 21, 2019 in Python by Mohammad
• 3,230 points
1,837 views
0 votes
1 answer

How to find the value of a row in a csv file in python?

If you want to find the value ...READ MORE

May 20, 2019 in Python by Sanam
18,589 views