Ранее я уже упоминал о другой фишке из ˍˍfutureˍˍ , это оператор деления.
from __future__ import division
Суть проста. Раньше сложность типа данных результата поределялась типом самого сложного операнда.
Например:
int/int => int
int/float => float
В первом случае оба операнда int, значит и результат будет int. Во втором float более сложный тип, поэтому результат будет float.
Если нам требуется получить дробное значение при делении двух int то приходилось форсированно один из операндов конверировать в float.
12/float(5) => float
Но с новой "философией" это не требуется. В Python3 "floor division" заменили на "true division" а старый способ теперь работает через оператор "//".
>>> 3/2
1.5
>>> 3//2
1
То есть теперь деление int на int даёт float если результат не целое число.
В классах теперь доступны методы __floordiv__() и __truediv__() для определения поведения с этими операторами.
Данный переход описан в PEP238.
#pep#2to3#basic
#typescript#ai#cli#summarize#typescript
Summarize is a fast tool for summarizing URLs, PDFs, images, audio/video, YouTube, and podcasts via Chrome Side Panel (with chat and history), Firefox Sidebar, or CLI. Install the extension from Chrome Web Store, add the local daemon with `npm i -g @steipete/summarize` and `summarize daemon install --token <TOKEN>`, then get one-click summaries, YouTube slides with OCR/timestamps, streaming Markdown, and media transcription. It saves time by quickly digesting long content so you focus on key insights without reading everything.
https://github.com/steipete/summarize
✨AI Tools for Sending Message
Unlock AI Power in Your Chat! Just type your message and use the AI tools directly within this chat. Get instant summaries, rewrites, and more! Let's get started!
✍️Summarize
📝Rewrite
😉Add Emoji to the Text
🔎Explaining Subject
❤️Graph Messenger 11.20.0
🗓Added from: June 2, 2025
#features#ai#ai_tools#chat
#summarize#rewrite
@GraphMessenger
@GraphMessengerTips
✨AI Tools
Supercharge Your Conversations with AI! Want to summarize a message, obtain key points of the message, explain the subject of the message, or rewrite something for clarity? Use our AI tools right here in the chat!
✍️Summarize Message
🗂Obtain Key Points of the message
🔎Explanation of the message subject
📝Rewrite Message
😉Add Emoji to the Text
❤️Graph Messenger 11.20.0
🗓Added from: June 2, 2025
#features#ai#ai_tools#chat
#summarize#key_points#explain
@GraphMessenger
@GraphMessengerTips