logo

Crowdly

Мова програмування Python

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!

Оберіть функцію для відкриття файлу на дозаписування.
100%
0%
0%
0%
View this question
Оберіть функцію для закриття файлу у Python.
0%
0%
0%
100%
View this question

Оберіть вірне тлумачення терміну рекурсія.

0%
0%
100%
0%
View this question
Будь-яке завдання, яке може бути розв'язане на основі рекурсії, також може бути розв'язане на основі …
0%
0%
0%
100%
View this question

Оберіть результат виконання програми:

i = 1

while i <= 10:

....print(i ** 2)

....i = i + 1

100%
0%
0%
0%
View this question

Оберіть результат виконання програми:

def foo(x):

....x = x**2

x = 2

print(foo(x))

0%
0%
0%
100%
View this question

Оберіть правильний запис оголошення функції з іменем foo.

50%
50%
0%
0%
View this question

Введіть результат виконання програми:

def func(n):

....n = n + 1

....return n

print(func(0))

View this question

Оберіть результат виконання програми:

def check(mas):

....if len(mas)< 10:

........return(False)

....else:

........return(True)

mas = []

i = 1

while not check(mas):

....mas.append(i)

....i += 1

print(mas)

0%
0%
100%
0%
View this question
Оберіть функцію для зчитування рядків з файлу в Python.
0%
0%
0%
100%
View this question

Want instant access to all verified answers on elr.tnpu.edu.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!