150
votes
78answers
11k views
Best ways to teach a beginner to program?
Original Question
I am currently engaged in teaching my brother to program. He is a total beginner, but very smart. (And he actually wants to learn). I've noticed that some of our sessions have …
43
votes
39answers
5k views
Are there any good reasons why I should not use Python?
I've heard from reliable sources that Python is a great language that every programmer can learn, but I've heard so much good about it that I'm clearly not getting the whole picture. I'm considering …
17
votes
4answers
413 views
Are there any declaration keywords in Python?
Are there any declaration keywords in python, like local, global, private, public etc. I know it's type free but how do you know if this statement:
x = 5;
Creates a new variable.
or
Sets an …
16
votes
3answers
269 views
Is there a way to loop through a sub section of a list in Python
So for a list that has 1000 elements, I want to loop from 400 to 500. How do you do it?
I don't see a way by using the for each and for range techniques.
14
votes
5answers
674 views
Python - why use “self” in a class?
How do these 2 classes differ?
class A():
x=3
class B():
def __init__(self):
self.x=3
Is there any significant difference?
14
votes
9answers
812 views
Beginner wondering if his code is ‘Pythonic’
This is really the first thing that I have written in python. I come from Java background. I don't want to just learn how to program java code with Python syntax. I want to learn how to program in …
13
votes
9answers
1k views
Subtracting 2 lists in Python
Right now I have vector3 values represented as lists. is there a way to subtract 2 of these like vector3 values, like
[2,2,2] - [1,1,1] = [1,1,1]
Should I use tuples?
If none of them defines these …
12
votes
18answers
830 views
Worst aspect of Python for a newbie
I'm wondering specifically what experienced programmers thought when they started developing in Python. I'm sure the answer depends on your background, but my own personal answer is the conversion of …
12
votes
6answers
3k views
Is there any way to kill a Thread in Python?
Is it possible to terminate a running thread without setting/checking any flags/semaphores/etc.?
11
votes
9answers
441 views
Is there a community for beginning programmers? [closed]
As a beginning guitarist/musician, I would often browse sites such as ibreathemusic.com and vai.com in an attempt to further my knowledge and perhaps meet some like-minded person who perhaps had …
11
votes
4answers
2k views
Iterating over a String (Python)
In C++, I could do:
for(int i = 0; i < str.length(); ++i)
std::cout << str[i] << std::endl;
How do I iterate over a string in Python?
11
votes
7answers
218 views
Passing a list while retaining the original
So I'm teaching myself Python, and I'm having an issue with lists. I want to pass my function a list and pop items off it while retaining the original list. How do I make python "instance" the passed …
11
votes
4answers
1k views
Map two lists into a dictionary in Python
Imagine that you have:
keys = ('name', 'age', 'food')
values = ('Monty', 42, 'spam')
What is the simplest way to produce the following dictionary ?
dict = {'name' : 'Monty', 'age' : 42, 'food' : …
11
votes
5answers
1k views
What’s the best way to return multiple values from a function in Python?
I have a function where I need to do something to a string. I need the function to return a boolean indicating whether or not the operation succeeded, and I also need to return the modified string.
…
10
votes
11answers
282 views
How to remove two chars from the beginning of a line
I'm a complete Python noob. How can I remove two characters from the beginning of each line in a file? I was trying something like this:
#!/Python26/
import re
f = open('M:/file.txt')
…
