All pastes
Paste #23012, pasted on Feb 4, 2012 11:25:15 PM
def factorial(base): if base > 1: return base*factorial(base-1) else: return 1 ...Paste #23011, pasted on Feb 4, 2012 11:14:43 PM
xmin = -5 xmax = 5 xvar = [] f_of_x = [] ...
Paste #23006, pasted on Feb 4, 2012 10:12:14 PM
>>>Paste #23005, pasted on Feb 4, 2012 10:04:23 PM
>>> root = dict() >>> path = "seg1/seg2/seg3 File "<input>", line 1 path = "seg1/seg2/seg3 ^ ...
Paste #23004, pasted on Feb 4, 2012 8:37:57 PM
from sys import argv from os.path import exists script, from_file, to_file = argv ...
Paste #23003, pasted on Feb 4, 2012 8:37:50 PM
from sys import argv from os.path import exists script, from_file, to_file = argv ...
Paste #23002, pasted on Feb 4, 2012 8:31:24 PM
from sys import argv from os.path import exists script, from_file, to_file = argv ...
Paste #23000, pasted on Feb 4, 2012 7:54:46 PM
from sys import argv script, filename = argv txt = open(filename) ...
Paste #22999, pasted on Feb 4, 2012 7:19:24 PM
class Item(object): def __init__(self, value): self.value = value #int instanceCount = 0 #Defining this in init does not work because it gets catched by the custom setattr already. ...
Paste #22998, pasted on Feb 4, 2012 7:01:59 PM
furutsuu@tabibito:/usr/lib$ python3 `which pip` Traceback (most recent call last): File "/usr/bin/pip", line 5, in <module> from pkg_resources import load_entry_point ImportError: No module named pkg_resources