Looking for Мова програмування Python test answers and solutions? Browse our comprehensive collection of verified answers for Мова програмування Python at elr.tnpu.edu.ua.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Оберіть правильний виклик методу func для наступного класу.class myClass:....def func(self):........print('hello')obj = myClass()
Оберіть рядок який створює в програмі об'єкт:class T1: n=10 def total(self,N):.... self.total = int(self.n)+ int(N) t1 = T1()t1.total(45)print(t1.total)
Якщо припустити, що клас Mydict успадковує клас dict, то яким клас dict є по відношенню до класу Mydict?
Оберіть термін який характеризує something для класcу Example:class Example:....def __init__(self):........self.data = ''....def something(self):........self.data = ''obj = Example()
Оберіть пояснення поняття «поліморфізм».
Оберіть результат виконання програми:class A:........#1....a = 1........#2....b = 2........#3................ #4class B(A):........#5....a = 3........#6....b = B()........#7....try:........#8........raise b....#9....except B:....#10........print(b.b)....#11
Оберіть результат виконання програми:class T2:....def total(self):........if s > 7:........self.total = Truet2 = T2()t2.total(4)print(t2.total)
Вкажіть чи є коректним наступне оголошення класу:class myClass:....pass
Оберіть правильний запис оголошення методу.
Оберіть призначення методу __init__: