/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
winapi__windows__ctypes/ctypes.windll.kernel32.GetTickCount.py
16 строк
231 B
gil9red
Refactoring. Using black code style
28 июн 2023, 16:24
28 июн 2023, 16:24
a1df582
Код
Авторство
О чём код?
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = "ipetrash" import ctypes import time GetTickCount = ctypes.windll.kernel32.GetTickCount t = GetTickCount() time.sleep(1) print(f"Elapsed: {GetTickCount() - t} ms")