Python/ django
58.9K subscribers
2.08K photos
61 videos
47 files
2.79K links
по всем вопросам @haarrp

@itchannels_telegram - 🔥 все ит-каналы

@ai_machinelearning_big_data -ML

@ArtificialIntelligencedl -AI

@datascienceiot - 📚

@pythonlbooks

РКН: clck.ru/3FmxmM
加入频道
This media is not supported in your browser
VIEW IN TELEGRAM
📊 Alive-progress on Python

letters = [chr(ord('A') + x) for x in range(26)]
with alive_bar(26, dual_line=True, title='Alphabet') as bar:
for c in letters:
bar.text = f'-> Teaching the letter: {c}, please wait...'
if c in 'HKWZ':
print(f'fail "{c}", retry later')
time.sleep(0.3)
bar()


Alphabet |
███████████████████████████▊ | ▃▅▇ 18/26 [69%] in 6s (3.2/s, eta: 3s)
-> Teaching the letter: S, please wait...


Git: https://github.com/rsalmei/alive-progress

@pythonl
Целочисленное деление в Python

Читать
Result of code?

Answer: {'Python,1,('abc','xyyz')'}

@pythonl
🔥 CompressedCrack Python скрипт для подбора паролей к zip и rar архивам.

⚙️ GitHub/Инструкция
Introduction to Linear Programming in Python

https://mlabonne.github.io/blog/linearoptimization/

@pythonl
What will be the output of the following code?
Anonymous Quiz
10%
222
6%
2
6%
1
5%
111
73%
Error
🔥 Полезные библиотеки Python. Facebook Friend List Scraper

Facebook Friend List Scraper - OSINT инструмент для сбора имен и никнеймов пользователей из больших списков друзей Facebook без ограничения скорости.

📝 Статья
What will be the output of the following code?
Anonymous Quiz
28%
10
23%
15
4%
0
33%
Error
12%
5
What will be the output of the following code?
Anonymous Quiz
56%
4
12%
3
3%
0
5%
1
9%
None
15%
Error
What will be the output of the following code?
Anonymous Quiz
35%
8
13%
0
7%
7
30%
9
15%
Error
Given two lists, l1 and l2, write a program to create a third list l3 by picking an odd-index element from the list l1 and even index elements from the list l2.