TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #61 · 2 апр.

Ранее я уже упоминал о другой фишке из ˍˍ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

Резултати

Пронајдени 2 слични објави

Пребарај: #postcss

当前筛选 #postcss清除筛选
GitHub Trends

@githubtrending · Post #15403 · 09.01.2026 г., 12:30

#typescript#css#css_framework#functional_css#postcss#responsive#tailwindcss#utility_classes Tailwind CSS is a utility-first CSS framework that lets you style websites by adding small, reusable classes directly in your HTML, instead of writing separate CSS files. It provides ready‑made utilities for layout, spacing, colors, and more, so you can build custom user interfaces quickly and consistently. Clear documentation, an active community, and contribution guidelines make it easier to learn, get help, and even contribute to the project, which can save time, reduce CSS complexity, and speed up your UI development. https://github.com/tailwindlabs/tailwindcss

GitHub Trends

@githubtrending · Post #14668 · 03.05.2025 г., 13:00

#svelte#component#component_library#components#css#css_components#css_framework#daisyui#design_pattern#design_system#design_systems#postcss#svelte#tailwind#tailwind_css#tailwindcss#ui_design#ui_framework#ui_kit#ui_library#ui_pattern daisyUI is a popular, free, and open-source component library for Tailwind CSS. It helps you build faster by providing useful class names for common UI elements like cards and calendars. This means you write less code and can focus on designing your interface more efficiently. daisyUI is also very customizable and works well with Next.js, adding no extra JavaScript to your projects, which keeps them fast and efficient. Overall, using daisyUI simplifies your development process and makes your projects more maintainable. https://github.com/saadeghi/daisyui