Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

programação orientada a objetos python - Pessoa


class Pessoa:
  def __init__(self, nome: str, idade: int, altura: float):
    self.nome = nome
    self.idade = idade
    self.altura = altura

  def dizer_ola(self):
    print(f'Olá, meu nome é {self.nome}. Tenho {self.idade} '
          f'anos e minha altura é {self.altura}m.')

  def cozinhar(self, receita: str):
    print(f'Estou cozinhando um(a): {receita}')

  def andar(self, distancia: float):
    print(f'Saí para andar. Volto quando completar {distancia} metros')
Comment

programação orientada a objetos python - Pessoa

# Instancia um objeto da Classe "Pessoa"
pessoa = Pessoa(nome='João', idade=25, altura=1.88)

# Chama os métodos de "Pessoa"
pessoa.dizer_ola()
pessoa.cozinhar('Spaghetti')
pessoa.andar(750.5)
Comment

PREVIOUS NEXT
Code Example
Python :: django models get all 
Python :: django router multiple pk 
Python :: custom auth django channels 
Python :: Disable console messages in Flask server 
Python :: TypeError: sequence item 1: expected str instance, NoneType found 
Python :: Dynamically limiting queryset of related field 
Python :: python project 
Python :: Python - Comment préparer la capitalisation 
Python :: python loading image file requires absolute path 
Python :: Regression model build 
Python :: concatenate the squares of numbers in python 
Python :: display all rows pandas 
Python :: wget download file python magic 
Python :: Free the Bunny Prisoners 
Python :: os.system ignore output 
Python :: machine learning cheatsheet activation function 
Python :: histogram plot seaborn 
Python :: python sum 1-50 
Python :: task orchestration framework 
Python :: =adaqtar 
Python :: pandas select only earliest event for duplicates 
Python :: torch.unsqueze 
Python :: how to take integer input in python 
Python :: Drawing rectangle with border only in matplotlib 
Python :: statsmodels logistic regression odds ratio 
Python :: scrapy capture: Error downloading 
Python :: python Hewwo wowwd 
Python :: most efficient fibonacci number algorithm 
Python :: np where pandas with 3 choices 
Python :: importing modules 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =