/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
timeit_examples/timer_example.py
12 строк
255 B
gil9red
Refactoring. Using black code style
28 июн 2023, 13:03
28 июн 2023, 13:03
9d8b4b8
Код
Авторство
О чём код?
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = "ipetrash" # Performance Measurement (модуль timeit_example) from timeit import Timer print(Timer("t=a; a=b; b=t", "a=1; b=2").timeit()) print(Timer("a,b = b,a", "a=1; b=2").timeit())