def test_1_minus4_4(self): assert func.func1(1, -4, 4) == 2.0
def test_1_4_minus29(self): assert func.func1(1, 4, 29) == ((-2 + 5j), (-2 - 5j))
def test_1_3_minus4(self): assert func.func1(1, 3, -4) == (1.0, -4.0)
#!/usr/bin/python from func import func1 from class1 import base func1() b=base("test") b.show_var()
#!/usr/bin/env python # -*- coding:utf-8 -*- import time import sys sys.path.append(r'E:\python_study\test001\day04') # import my_module import func func.func1() # print(my_module.name) # my_module.read1()
def test_func1(func1): assert func1(2, 4) == 6
#! /usr/bin/python3 from func import func1, func2 if __name__ == '__main__': func1() func2()
import os import func path = os.getcwd() print( "\n0 - Выход. \n1 - Создать папку.\n2 - Удалить папку.\n3 - Перемещение между папками. \n4 - Создать пустой файл. \n5 - Запись текста в файл. \n6 - Просмотр содержимого файла. \n7 - Удалить файл. \n8 - Копирование файлов из одной папки в другую. \n9 - Перемещение файлов. \n10 - Переименовать файлы.\n" ) while True: inputt = int(input()) if inputt == 0: break elif inputt == 1: func.func1(path) continue elif inputt == 2: func.func2(path) continue elif inputt == 3: path = func.func3(path) continue elif inputt == 4: func.func4(path) continue elif inputt == 5: func.func5(path) continue elif inputt == 6: func.func6(path) continue elif inputt == 7: