0
votes
7answers
69 views
Finding the joy of Javascript or searching for another UI-focused languages?
Hey everyone,
I'm a GUI designer/interactive musician wanting to improve my programming chops. I already know the basics(variables, loops, arrays, if/else, some logic), but I'm looking to learn in a …
1
vote
7answers
148 views
Must Standard libraries for python beginner
Though there can be many but as i am very new to python so which modules or classes within standard libraries i should know when programming in python, especially when i am practicing programming …
0
votes
4answers
72 views
Appending lists from files to a single list in Python
I'm trying to write a function that reads files from a "deferred" directory which contains files that contain lists. Here's what the files in the deferred folder contain:
'173378981', '45000', …
5
votes
4answers
288 views
Are there functions in Python?
Or is everything a method?
Since everything is an object, a
def whatever:
is just a method of that file.py, right?
3
votes
7answers
195 views
Why can’t I sort this list?
statlist = [('abc',5,1), ('bzs',66,1), ... ]
sorted(statlist, key=lambda x: int(x[1]))
I want to sort it by the integer largest to smallest. In this case, 5 and 66. But it doesn't seem to be …
4
votes
3answers
152 views
Why can’t I join this tuple in Python?
e = ('ham', 5, 1, 'bird')
logfile.write(','.join(e))
I have to join it so that I can write it into a text file.
1
vote
4answers
100 views
Line-breaking Expression in Python
I am beginner in python and facing this problem. So how i can break the below expression in 2-3 lines
totalIncome = (classACost * float(classASeatsSold)) + (classBCost * float(classBSeatsSold)) + …
1
vote
6answers
179 views
How would you represent a MineSweeper grid in Python?
What datastructure would you use in Python to represent the internal state of a MineSweeper grid?
Each x,y position will hold a numerical value which represents its current cell state (unexplored, …
2
votes
7answers
167 views
Pythonic way to select first variable that is defined
I have some variables and I want to select the first one that is defined, or else return a default value.
For instance I have a, b, and c. My existing code:
result = a if a else (b if b else (c if c …
1
vote
2answers
117 views
NameError: name ‘self’ is not defined
Why such structure
class A:
def __init__(self, a):
self.a = a
def p(self, b=self.a):
print b
gives an error NameError: name 'self' is not defined?
0
votes
3answers
115 views
python : list index out of range error
I have written a simple python program
l=[1,2,3,0,0,1]
for i in range(0,len(l)):
if l[i]==0:
l.pop(i)
This gives me error 'list index out of range' on line if l[i]==0:
After …
0
votes
9answers
199 views
Python Remove last 3 characters of a string
I'm trying to remove the last 3 characters from a string in python, I don't know what these characters are so I can't use rstrip, I also need to remove any white space and convert to upper-case
an …
1
vote
5answers
105 views
Make Dictionary From 2 List
trying to make dictionary with 2 list one being the key and one being the value but I'm having a problem. This is what I have so far:
d={}
for num in range(10):
for nbr in range(len(key)):
…
0
votes
4answers
91 views
Looping through files in a folder
Hi, I'm fairly new when it comes to programming, and have started out learning python.
What I want to do is to recolour sprites for a game, and I am given the original colours,
followed by what they …
2
votes
5answers
86 views
How do I remove something form a list, plus string matching?
[(',', 52),
('news', 15),
('.', 11),
('bbc', 8),
('and', 8),
('the', 8),
(':', 6),
('music', 5),
('-', 5),
('blog', 4),
('world', 4),
('asia', 4),
('international', 4),
('on', 4),
…
