Unofficial Windows Binaries for Python Extension Packages https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyqt
Qt bu faqat cross-platforma SDK-dan ancha ko'proq - bu barcha qurilmalarda uzluksiz foydalanuvchi tajribasini taqdim etishda dasturiy ta'minotni tez va arzon narxlarda ishlab chiqish, joriy etish va qo'llab-quvvatlash imkonini beruvchi texnologiya strategiyasi.
Veb sayt: http://www.qt.io
Qo'shimcha ma'lumot: qtrac.eu/pyqtbook.html http://pyqt.sourceforge.net/Docs/PyQt4/
Veb sayt: http://www.qt.io
Qo'shimcha ma'lumot: qtrac.eu/pyqtbook.html http://pyqt.sourceforge.net/Docs/PyQt4/
www.qt.io
Qt | Tools for Each Stage of Software Development Lifecycle
All the essential Qt tools for all stages of Software Development Lifecycle: planning, design, development, testing, and deployment.
https://mover.uz/channel/fluctr bu kanalda Kotlin dasturlash tili darslari joylashtirildi
Forwarded from Deleted Account
Telegram
Telegram: Share Web Page
Forwarded from Deleted Account
python dasturlash tili qoʻllanma.docx
897 KB
Salom. @apiuz , @pythonuz , @phpuz , @pythonuz_videos kanal a'zolarini ko'paytirish maqsadida informatsion texnologiyalarga aloqador kanllar bilan reklama (VP) almashamiz.Murojat un @xitoy2
Forwarded from Deleted Account
Language:
Source:
Result:
py3
Source:
import re
text="saloooom qalaysiz saloooom saloom oshna"
text2=text.split()
for i in re.findall("salo+m", text):
text2.remove(i)
print(' '.join(text2))
Result:
qalaysiz oshna
Forwarded from Future Dreams
Language:
Source:
Result:
Python3
Source:
a = 1
b = 2
c = 3
nums = [a, b, c]
max1 = max(nums)
nums.remove(max1)
max2 = max(nums)
print(max1, max2)
Result:
3 2
Forwarded from Future Dreams
Language:
Source:
Result:
Python3
Source:
a = 1
b = 2
c = 3
nums = [a, b, c]
nums.sort()
print(nums[-1], nums[-2])
Result:
3 2
Forwarded from Future Dreams
import json
obyekt = {"son": 1, "list": [0, "a", False], "ism": "Ali"}
# stringga o'tkazamiz
string = json.dumps(obyekt)
# faylga yozamiz
open('./test.txt', 'w').write(string)
# endi uni o'qib ko'ramiz
string = open('./test.txt', 'r').read()
# obyektga aylantiramiz
obyekt = json.loads(string)
# obyektni ishlatib ko'ramiz
son = obyekt['son']
list1 = obyekt['list']
ism = obyekt['ism']