“função python getattr” Respostas de código

python getattr

class Student:
  marks = 88
  name = 'Sheeran'

person = Student()

name = getattr(person, 'name')
print(name)

marks = getattr(person, 'marks')
print(marks)

# Output: Sheeran
#         88
John Appleseed

função python getattr

class Student:
    name = 'John'
    age  = 24
  
student = Student()
  
print('Student name: ', getattr(student, 'name'))
print('Student age: ', getattr(student, 'age'))
  
# Output
# Student name:  John
# Student age:  24
Glorious Gnat

Respostas semelhantes a “função python getattr”

Perguntas semelhantes a “função python getattr”

Mais respostas relacionadas para “função python getattr” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código