Looking for Course 67 test answers and solutions? Browse our comprehensive collection of verified answers for Course 67 at dl.guscollege.com.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Невпорядкована колекція об'єктів будь якого типу, що не повторюються це -
Вивести на екран випадковий елемент із списку
Які з наведених записів використовують для створення множин?
У словнику доступ до об'єктів здійснюється за допомогою:
s="ab12c3"print(sum(1 for c in s if c.isdigit()))
Що буде в результаті виконання коду:
name = "John"
print("Hi, %s" % name)
Скільки разів виконається цикл?
i=1000
while i > 100:
print (i)
i/=2
В чому помилка у цьому коді?
i = 0
while i < 5:
print(i)
Скільки буде значення змінної x після 4 ітерацій циклу? (впишіть число)
x = 1
i = 0
while i < 4:
x = x + 2
i += 1