[ create a new paste ] login | about

bpgergo

Name:
Email:
Site/Blog: http://bpgergo.blogspot.com
Location:
Default language:
Favorite languages:
About:

Saved pastes by bpgergo:

Python, pasted on Aug 25:
1
2
3
4
5
a = [[1, 2, 3], [4, 5, 6]]
b = [[1, 2], [3, 4], [5, 6]]

def mult(m1, m2):
	if len(m1[0]) != len(m2):
...
view (9 lines, 1 line of output)
Python, pasted on Apr 2:
1
me= "print 'me=',repr(me),';exec(me)'" ;exec(me)
view (1 line, 1 line of output)
Python, pasted on Aug 23:
1
2
3
4
5
# coding=UTF-8
'''
Created on Aug 21, 2010
@author: bpgergo
convert TAB delimited txt file (or Excel, CSV) into SQL insert
...
view (160 lines)