Courses
Courses
Code Compiler
Code Compiler
Discuss
Pricing
Teams
Log in
Register
Menu
Q&A Discussions
Search
Search
Ask a question
Ask a question
Do you need to know any other programming languages to start learning python?
python
0 Votes
1 Answer
7th Apr 2016, 6:29 PM
D'owen Dameon
What is the advantages of sets?
python
sets
0 Votes
1 Answer
7th Apr 2016, 10:53 AM
Ergash Zaripov
Please, could somebody explain this code step by step?
functions
python
4 Votes
2 Answers
7th Apr 2016, 9:08 AM
Marco Carone
When it says import random for i in range(5): value = random.randint(1, 6) print(value) What does the 'i' mean?
modules
python
5 Votes
12 Answers
7th Apr 2016, 5:14 AM
Bam Morgan
Could someone give an example of comparing strings using greater or less than operators? I'm not sure what this statement means: 'the alphabetical order of words is based on the alphabetical order of their component letters'
booleans
python
2 Votes
2 Answers
6th Apr 2016, 7:52 PM
nashyboots
What is the need to write fib.get(4,0)? Can't we just write fib.get(4)
dictionaries
python
0 Votes
1 Answer
6th Apr 2016, 5:38 AM
Dhiranjan
Raising a string to a power?
python
strings
-1 Vote
4 Answers
6th Apr 2016, 1:49 AM
Jarryn McMaster
When should one use a classmethod instead of a static method?
classes
python
3 Votes
2 Answers
5th Apr 2016, 9:50 PM
Shadow3097
Could someone explain to me what does "str" mean and what does it do? Thanks! :)
python
strings
0 Votes
2 Answers
4th Apr 2016, 10:16 PM
Artūras
Is read(-1) possible?
files
python
1 Vote
1 Answer
4th Apr 2016, 11:19 AM
Ku95
Can anyone give me a more complex regex pattern to extract an Email?
python
regular-expressions
1 Vote
1 Answer
3rd Apr 2016, 9:00 PM
Piyush Singh
I just don't get why lambdas are called anonymous functions. could somebody explain?
lambdas
python
1 Vote
3 Answers
3rd Apr 2016, 3:02 PM
Selva Kannan
Does anyone use C# or Java and is able explain the advantages of Python over those languages?
c#
java
python
1 Vote
3 Answers
2nd Apr 2016, 6:09 PM
Michael
What does zero mean in fib.get(4,0)?
dictionaries
python
3 Votes
4 Answers
1st Apr 2016, 6:18 PM
Евгений В
If we can close by the close method, then what's the necessity of using finally?
files
python
0 Votes
2 Answers
31st Mar 2016, 4:37 AM
Bne Ayoub
After python, what is another coding language that should be learned?
python
2 Votes
1 Answer
30th Mar 2016, 2:29 PM
Barron Seamist
How could I write a code that sum the power of 2 from 2 ^1 to 2^65?
python
1 Vote
1 Answer
30th Mar 2016, 1:45 PM
marco colombo
takewhile() and filter() does the same job. What is the difference between the two ?
itertools
python
0 Votes
3 Answers
30th Mar 2016, 1:34 PM
Shubham Kumar
What will happened if we write 2 times file.close() statement?
files
python
1 Vote
5 Answers
29th Mar 2016, 3:45 PM
Dinesh Ingole
Is better to start with python 2.7 instead of this if you're a total noob?
python
0 Votes
1 Answer
29th Mar 2016, 8:46 AM
max lucado
I still don't get why we use triple quotations. Also what's doc string?
python
strings
0 Votes
2 Answers
28th Mar 2016, 9:20 PM
B.T
How does comparing strings of different lengths work?
booleans
python
strings
0 Votes
3 Answers
23rd Mar 2016, 9:34 PM
Davide Amato
Any preferred IDE which will automatically check for PEP8?
ide
python
0 Votes
1 Answer
21st Mar 2016, 3:40 AM
Pratul Kumar Singh
Below is my program for reverse method which I couldn't get the output of: could you tell me the reason?
python
0 Votes
3 Answers
19th Mar 2016, 6:29 AM
Jay Khamar
So does having modules written in C in the Standard Library imply you can run them with your own Python code in the Python compiler?
modules
python
0 Votes
1 Answer
16th Mar 2016, 4:22 AM
Ben
Can anyone please explain below line for me print("{0}-{1}%".format(char, round(perc,2))).??
python
strings
1 Vote
2 Answers
14th Mar 2016, 2:38 PM
pruthvirajkankipati
Which advantages do we get using recursion?
python
recursion
2 Votes
4 Answers
14th Mar 2016, 11:33 AM
Michele Paci
What's the difference between writing "continue" and not writing anything?
loops
python
-1 Vote
5 Answers
13th Mar 2016, 9:24 AM
Taner
Are sets mutable?
python
sets
1 Vote
2 Answers
11th Mar 2016, 7:29 PM
Abhishek Jain
Anyone knows if there is big difference between Python 2.7 (pre installed in my Linux distro) and 3.5?
python
0 Votes
2 Answers
10th Mar 2016, 11:57 PM
Décio
So, when/why would you want to use an empty tuple or an empty dictionary?
python
tuples
7 Votes
5 Answers
10th Mar 2016, 4:54 AM
Shea Culbertson
What are the advantages of python over java?
java
python
0 Votes
2 Answers
8th Mar 2016, 9:47 PM
Sherifdeen Yusuf
Does anyone here knows what the 're' and 'os' libraries are, and what are they used for?
modules
python
3 Votes
2 Answers
8th Mar 2016, 7:06 AM
Mayur Deshmukh
Are permutations used in password cracking software?
itertools
python
1 Vote
1 Answer
6th Mar 2016, 8:16 PM
Percival Gebashe
What are the real advantages of using decorators?
decorators
python
6 Votes
5 Answers
5th Mar 2016, 8:15 AM
Martin Wild
What's the difference between python and cpython?
python
1 Vote
1 Answer
5th Mar 2016, 2:49 AM
Richy Koshy
What is the difference between execute, run and compile?
python
1 Vote
1 Answer
4th Mar 2016, 6:52 AM
hassuna
Can anyone help me to understand this code?
numeric-operations
python
1 Vote
2 Answers
3rd Mar 2016, 5:56 PM
camzee
2**5 = 32 .. I dont understand how it can result 32 in python. can somebody help me .. thanx
numeric-operations
python
5 Votes
5 Answers
2nd Mar 2016, 9:26 AM
Prakasa Devetek
After printing "Breaking" why doesn't it print the value of (i) even though in the code it is written print(i)?
loops
python
0 Votes
3 Answers
2nd Mar 2016, 2:47 AM
Dave
What does "while True" mean?
loops
python
0 Votes
3 Answers
1st Mar 2016, 11:47 AM
김도현
What exactly is the point of assigning a function to a variable?
functions
python
41 Votes
15 Answers
1st Mar 2016, 2:18 AM
Manta Ryugami
Which is the best api for Web scraping?
modules
python
0 Votes
3 Answers
29th Feb 2016, 6:28 PM
vipul javeri
Is it possible to make a website with python?
python
0 Votes
2 Answers
27th Feb 2016, 10:48 PM
John Dang
What's the difference between Perl, JavaScript and Python?
javascript
perl
python
1 Vote
4 Answers
26th Feb 2016, 4:29 PM
vadde venugopal
Which compiler is used for python?
compiler
python
0 Votes
2 Answers
26th Feb 2016, 2:26 PM
Muzna Junaid Chishti
Is there way to recover the non decorated function print_text() after decorating it with @decor?
decorators
python
1 Vote
3 Answers
25th Feb 2016, 2:26 PM
Lars
Are /A and /Z the same as ^ and $?
python
regular-expressions
3 Votes
2 Answers
24th Feb 2016, 4:26 AM
Junjie
What is circular inheritance?
inheritance
python
7 Votes
2 Answers
22nd Feb 2016, 12:37 AM
Julian Wittische
Why cant i run this code in playground?
if-statements
python
1 Vote
4 Answers
21st Feb 2016, 6:04 AM
Prabin Parajuli
Ask a question
Ask a question
Ask a question
Ask a question
< Previous
1
...
1077
1078
1079
1080
Next >
Hot today
GUI-Based Python code in Webpage
4 Votes
Convert Animated SVG to PNG
1 Votes
I'm still new, help me about my image code
0 Votes
My Missing Courses
1 Votes
Font size
0 Votes
Mobile
0 Votes
my code isn’t working can someone give me tips?
1 Votes
Are '\0' and NULL the same?
1 Votes
Number addition
0 Votes
I need help here
1 Votes