معرفی شرکت ها


bakery-1.0.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Tools to help students write code.
ویژگی مقدار
سیستم عامل -
نام فایل bakery-1.0.0
نام bakery
نسخه کتابخانه 1.0.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده acbart
ایمیل نویسنده acbart@udel.edu
آدرس صفحه اصلی https://github.com/python-bakery/bakery-support-library
آدرس اینترنتی https://pypi.org/project/bakery/
مجوز MIT
Bakery Support Library ====================== A collection of tools to help students write code, meant for the Python Bakery CS1 curriculum. For now, mostly improved assertions. Installation ============ Install from PyPi:: pip install bakery Or install from: https://github.com/python-bakery/bakery-support-library Examples ======== .. code-block:: python from bakery import assert_equal def halve(number): return number / 2 # Correctly handles floating points assert_equal(halve(10), 5.0) Output ====== This library will print a message to STDOUT if an assertion fails, and returns True/False. It does not raise an exception or print to STDERR. Supported Types =============== * Numbers: strictly compares numeric types, but allows floats to have imprecision, defaults to 4 places * Strings: can strictly compare types with exact_strings=True, but defaults to ignore whitespace on newlines and capitalization * Lists, Tuples: applies same rules to inner types as container types * Sets, Frozensets, Dictionary: checks that all elements are contained in both, in any order * Generators: functions like `enumerate` and `.items()` that produce generators are converted to lists and sets (as appropriate), then checked that their values match. * Other types should work as well, but require that the result of `type` match, and that `x == y`


نحوه نصب


نصب پکیج whl bakery-1.0.0:

    pip install bakery-1.0.0.whl


نصب پکیج tar.gz bakery-1.0.0:

    pip install bakery-1.0.0.tar.gz