کتابخانه time و winsound در پایتون

به دوره آموزش پایتون خوش آمدید. برای رفتن به اولین جلسه این دوره، اینجا کلیک کنید. جلسه قبل درمورد کتابخانه در پایتون صحبت کردیم. در این بخش میخواهیم با کتابخانه های time و winsound کار کنیم. در ابتدا بهتر است کتابخانه time را باز کنیم و ببینیم چه چیز هایی درون خود دارد. پس از dir استفاده میکنیم:

import time

print(dir(time))
# ['_STRUCT_TM_ITEMS', '__doc__', '__loader__',
# '__name__', '__package__', '__spec__', 'altzone',
# asctime', 'ctime', 'daylight', 'get_clock_info',
# 'gmtime', 'localtime', 'mktime', 'monotonic',
# 'monotonic_ns', 'perf_counter', 'perf_counter_ns',
# 'process_time', 'process_time_ns', 'sleep', 'strftime',
# 'strptime', 'struct_time', 'thread_time',
# 'thread_time_ns', 'time', 'time_ns', 'timezone', 'tzname']

میخواهیم با چندتایی از آن ها شروع کنیم. از خود time شروع میکنیم:

import time

print(time.time())
# ۱۵۸۹۹۵۵۵۲۳٫۷۳۹۳۹۷۳

یک عدد برمیگرداند که زمان حال را به ثانیه نشان میدهد. در ادامه در مورد مبدا زمانی آن بیشتر توضیح خواهیم داد. تابع دیگری وجود دارد به نام gmtime که مقدار ثانیه ای لحظه را که تا به اینجا دیدیم میگیرد و تاریخ و ساعت دقیق را بر میگرداند:

import time

print(time.gmtime(1589955523.7393973))
# time.struct_time(tm_year=2020, tm_mon=5, tm_mday=20, tm_hour=6, tm_min=18, tm_sec=43, tm_wday=2, tm_yday=141, tm_isdst=0)

میبینیم که سال، ماه، روز، ساعت، دقیقه، ثانیه، شماره روز در هفته و شماره روز در سال را به طور دقیق نمایش میدهد.

میخواهیم بدانیم مبدا زمانی که قبلا دیدیم از چه تاریخی شروع شده، پس کافیست در تابع gmtime عدد ۰ را وارد کنیم:

import time

print(time.gmtime(0))
# time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=1, tm_isdst=0)

میبینیم که به اولین روز از اولین ماه از سال ۱۹۷۰ اشاره میکند که این تاریخ به طور قراردادی در سیستم عامل های ویندوز و بعضی از سیستم عامل های لینوکس درنظر گرفته شده است.

حال وقت آن است که درمورد تابع sleep صحبت کنیم. این تابع یک ورودی را بعنوان ثانیه میگیرد و به همان اندازه در اجرای برنامه وقفه می اندازد. یعنی وقتی بگوییم time.sleep(2)، کامپایلر وقتی به این خط برسد به مدت ۲ ثانیه متوقف میشود.

کتابخانه دیگری که میخواهیم درموردش صحبت کنیم، کتابخانه winsound میباشد. این کتابخانه روی ویندوز کار میکند و یک سری صدای ساده تولید میکند.

در این کتابخانه میتوان به تابع Beep اشاره کرد که یک بوق را به صدا در می آورد. دو ورودی میگیرد که اولی فرکانس بوق و دومی مدت زمان پخش بوق به میلی ثانیه میباشد.

کد زیر را روی کامپیوتر خود امتحان کنید تا ببینید چه اتفاقی می افتد:

import winsound, random

while True:
    f = random.randint(800, 20000)
    d = random.randint(100, 300)
    winsound.Beep(f, d)

در جلسه بعد درمورد مقدمات شی گرایی صحبت خواهیم کرد.

ارسال دیدگاه

نشانی ایمیل شما منتشر نخواهد شد. بخش‌های موردنیاز علامت‌گذاری شده‌اند *


Warning: file_put_contents(): Only -1 of 81 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 659 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 137870 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 242 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 116108 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 292 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 10982 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 25669 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 739 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 8901 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 2413 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 129 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 59046 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 350 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 1058 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 57 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 2279 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 267177 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 160457 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 11343 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 4186 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 153101 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 5676 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 21526 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 53727 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 1391 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 451276 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 508 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 5860 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 1558916 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 60262 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 26702 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 6435 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 1051 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 58071 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 983 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 975 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 611 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 237 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 14002 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 254 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 77 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 3382 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 13578 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 9638 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 292 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 4037 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 1722 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 180 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 3926 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Warning: file_put_contents(): Only -1 of 15074 bytes written, possibly out of free disk space in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177

Fatal error: Uncaught ErrorException: file_put_contents(): write of 8192 bytes failed with errno=122 Disk quota exceeded in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php:177 Stack trace: #0 [internal function]: litespeed_exception_handler(8, 'file_put_conten...', '/home/farkia/do...', 177, Array) #1 /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php(177): file_put_contents('/home/farkia/do...', '<!DOCTYPE html>...', 8) #2 /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/optimizer.cls.php(135): LiteSpeed\File::save('/home/farkia/do...', '<!DOCTYPE html>...', true, true) #3 /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/optimize.cls.php(838): LiteSpeed\Optimizer->serve('https://farkian...', 'js', true, Array) #4 /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/optimize.cls.php(388): LiteSpeed\Optimize->_ in /home/farkia/domains/farkiantech.com/public_html/wp-content/plugins/litespeed-cache/src/file.cls.php on line 177