"lczancanella" <lczancane...@gmail.com> ha scritto nel messaggio
news:32bf5ccb-5bfd-49a5-b423-9d41180a0...@l28g2000vba.googlegroups.com...
> Hi, i am brand new in Python, so sorry if this question is too basic,
> but i have tried a lot and dont have success... I have the following
> code...
>
> class Funcoes:
>     def CifradorDeCesar(mensagem, chave, funcao):

A quick look to your code suggests to me to rewrite the above lines as:

class Funcoes:
    @classmethod
    def CifradorDeCesar(self, mensagem, chave, funcao):

@classmethod is needed since you call:
>                     atribdescripto = Funcoes.CifradorDeCesar (atribcripto,
3, 2)

Best regards,
Enrico


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to