3
votes
7answers
185 views
Searching values of a list in another List using Python
Im a trying to find a sublist of a list. Meaning if list1 say [1,5] is in list2 say [1,4,3,5,6] than it should return True. What I have so far is this:
for nums in l1:
if nums …
3
votes
4answers
152 views
“”.join(reversed(val)) vs val[::-1]…which is pythonic?
So according to the Zen of Python ... Explicit is better than implicit...Sparse is better than dense...Readability counts...but then again Flat is better than nested...so then whic …
0
votes
2answers
34 views
Set Selection in Numbers (Python/Appscript)
How do you set the selection for a table in Numbers using py-appscript?
This seems like it should be really simple to do but the solution is frustratingly evasive. I can get the c …
2
votes
3answers
82 views
Finding a logic bug in converting Python code to PHP
The input 7|12|1|14|2|13|8|11|16|3|10|5|9|6|15|4 returns 0 by the PHP -code, while 1 by Python code: 1 means that the sums of the 4x4 magic square are the same, while 0 means the r …
1
vote
5answers
98 views
Why does str.lstrip strips an extra character?
Python 2.6 (trunk:66714:66715M, Oct 1 2008, 18:36:04)
[GCC 4.0.1 (Apple Computer, Inc. build 5370)] on darwin
Type "help", "copyright", "credits" or "license" for more informatio …
5
votes
2answers
221 views
Python-equivalent of short-form “if” in C++
Is there a way to write this C/C++ code in Python?
a = (b == true ? "123" : "456" )
Thanks so much!
0
votes
1answer
31 views
Getting the Current Table in Numbers (Python/Appscript)
How do I access the current table in Numbers using py-appscript?
For posterity, the program I created using this information clears all the cells of the current table and retur …
0
votes
5answers
100 views
How flatten a list of lists one step
I have a list of lists of tuples
A= [ [(1,2,3),(4,5,6)], [(7,8,9),(8,7,6),(5,4,3)],[(2,1,0),(1,3,5)] ]
The outer list can have any number of inner lists, the inner lists can ha …
0
votes
2answers
70 views
Modulus in Python’s slicing
How can you fix the following code?
I want to get the slice of elements that are i mod 5 == 1.
data = "8|9|8|9|8|9|8|9|9|8|9|8|9|8|9|8"
arra = map(int,data.split("|"))
sums + …
0
votes
2answers
56 views
AND in Python’s slicing with modulus
How can you fix the code?
I am trying to have i % 3 == 1 and i != 16 unsuccessfully by
data = "8|9|8|9|8|9|8|9|9|8|9|8|9|8|9|8"
arra = map(int,data.split("|"))
arra = sum(arra[1 …
1
vote
2answers
78 views
Datetime - 10 Hours
Consider:
now = datetime.datetime.now()
now
datetime.datetime(2009, 11, 6, 16, 6, 42, 812098)
How would I create a new datetime object (past) and minus n values from the hours?
0
votes
1answer
39 views
why cant i just install the pycrypto?
i type "python setup.py install" in a windows XP console, it reported as follows:
running install
running build
running build_py
running build_ext
warning: GMP library not found; …
1
vote
5answers
127 views
why does python’s list.append evaluate to false?
Is there a reason being list.append evaluating to false? Or is it just the C convention of returning 0 when successful that comes into play?
>>> u=[]
>>> not u.a …
2
votes
2answers
92 views
Acessing other py file’s class
I have two files:
a.py
b.py
How can I access my ABC123 class defined in a.py from b.py?
2
votes
6answers
140 views
Converting Python Dictionary to List
I'm trying to convert a Python dictionary into a Python list, in order to perform some calculations.
#My dictionary
dict = {}
dict['Capital']="London"
dict['Food']="Fish&Chips …
