Ministério da Educação
Brasil um país de todos
Personal tools
You are here: Home Members Roberta Andrade de Araújo Fagundes Introdução a Programação Solução - questão 01 de classe
Navigation
Log in


Forgot your password?
 
Document Actions

Solução - questão 01 de classe

by Roberta Andrade de Araújo Fagundes last modified 2009-11-29 23:34

Solução - questão 01 de classe

Click here to get the file

Size 1 kB - File type text/python-source

File contents

'''
Created on 30/11/2009

@author: Gustavo
'''
class Bola:

    def __init__(self, cor, circunferencia, material):
        self.__cor = cor
        self.__circunferencia = circunferencia
        self.__material = material


    def trocarCor(self,cor):
        self.__cor = cor
    
    def mostrarCor(self):
        return self.__cor
        

bola = Bola("branca",10,"couro")
print (bola.mostrarCor())
bola.trocarCor("amarela")
print (bola.mostrarCor())

Powered by Plone CMS, the Open Source Content Management System

This site conforms to the following standards: