Logwatch python

2013-02-09 Thread Cleuson Alves
Hello, I am trying to run this code, but I get an answer incorrect arguments numbers. someone could put an example of arguments for me to use in the / var / log? Thank you. import os, sys from optparse import OptionParser

Re: Division matrix

2012-11-13 Thread Cleuson Alves
Thanks, I'm starting to plan now, so I'm still confused with the production code, but what I need is to divide array 2x2 or 3x3. I still can not! 2012/11/12 Joshua Landau > On 13 November 2012 01:00, Cleuson Alves wrote: > >> Hello, I need to solve an exercise follow

Division matrix

2012-11-12 Thread Cleuson Alves
Hello, I need to solve an exercise follows, first calculate the inverse matrix and then multiply the first matrix. I await help. Thank you. follows the code below incomplete. m = [[1,2,3],[4,5,6],[7,8,9]] x = [] for i in [0,1,2]: y = [] for linha in m: y.append(linha[i]) x.app