diff options
author | lucii7vel <33035261+lucii7vel@users.noreply.github.com> | 2024-07-06 07:21:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-06 05:21:28 -0600 |
commit | cc9f50c3d8fa5d0995f607fe48d98c1cfb91fcb9 (patch) | |
tree | 2561a41ab1c7033f496d54dfec50c12f2d05438d | |
parent | 3c01f30087372cf3093f561db52264f7ef7095e6 (diff) |
[python/be] update floor division (#4996)
-rw-r--r-- | be-by/python-by.html.markdown | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/be-by/python-by.html.markdown b/be-by/python-by.html.markdown index c5476a08..15460aa7 100644 --- a/be-by/python-by.html.markdown +++ b/be-by/python-by.html.markdown @@ -41,8 +41,7 @@ Python быў створаны Гвіда ван Росумам у пачатк 10 * 2 # => 20 35 / 5 # => 7.0 -# Вынік цэлалікавага дзялення акругляецца як для пазітыўных, -# так і для негатыўных значэнняў. +# Вынік цэлалікавага дзялення акругляецца ў напрамку мінус бесканечнасці 5 // 3 # => 1 -5 // 3 # => -2 |