logo

Crowdly

Browser

Add to Chrome

Технології програмування, частина 1 [05914]

Looking for Технології програмування, частина 1 [05914] test answers and solutions? Browse our comprehensive collection of verified answers for Технології програмування, частина 1 [05914] at vns.lpnu.ua.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

Що виведе наступний код

x = (7, 8, 9)

print(sorted(x) == x)

View this question

Виберіть синтаксично вірні записи кортежу в Python

 

View this question

Виберіть методи модуля pickle для збереження об'єктів у файл і завантаження об'єктів з файлу

View this question

Який вірний код для запису емодзі 😀 (код 0001F600) у файл?

View this question

У яких випадках відкриття буде можливість читання файлу file.txt?

View this question

У даному фрагменті коду виклик close() є необхідним?

with open(r"file1.txt", "w") as f:

    f.write("Файл записано!!!")

    f.close()

25%
75%
View this question

Ідентифікатори, назви яких починаються з символу підкреслення, не імпортуються з допомогою wildcard-імпорту

from module import *

100%
0%
View this question

Виберіть змінні, які будуть імпортовані з модуля module під час виконання наступного фрагменту коду

# Вміст модуля module

х, у, z, _s = 10, 80, 22,

"Рядок"

# Імпортування змінних з модуля module

from module import *

View this question

Що виведе наступний код:

def exception():

    try:

        return 1

    except:

        return 2

    else:

        return 3

    finally:

        return 4

print(exception())

View this question

Виберіть, що виведеться після виконання вказаного фрагменту коду

try:

    x = 1 / int('s')

except ZeroDivisionError:

    print('Str0', end = ' ')

except ValueError:

    print('Str1', end = ' ')

else:

    print('Str2', end = ' ')

finally:

    print('Str3', end = ' ')

View this question

Want instant access to all verified answers on vns.lpnu.ua?

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

Browser

Add to Chrome