8
8
msgstr ""
9
9
"Project-Id-Version : Python Training Course 2022.11.dev\n "
10
10
"Report-Msgid-Bugs-To : \n "
11
- "POT-Creation-Date : 2023-04-21 05:50 +0300\n "
12
- "PO-Revision-Date : 2023-04-21 05:51 +0300\n "
11
+ "POT-Creation-Date : 2023-04-21 06:44 +0300\n "
12
+ "PO-Revision-Date : 2023-04-21 06:46 +0300\n "
13
13
"Last-Translator : Serhii Horodilov <sgorodil@gmail.com>\n "
14
14
"Language-Team : \n "
15
15
"Language : uk\n "
@@ -903,87 +903,87 @@ msgstr "сума *x* і *y*"
903
903
904
904
#: ../../src/basics/stdtypes.txt:40
905
905
msgid "``x - y``"
906
- msgstr "``x + y``"
906
+ msgstr "``x - y``"
907
907
908
908
#: ../../src/basics/stdtypes.txt:40
909
909
msgid "difference of *x* and *y*"
910
910
msgstr "різниця між *x* і *y*"
911
911
912
912
#: ../../src/basics/stdtypes.txt:42
913
913
msgid "``x * y``"
914
- msgstr "``x + y``"
914
+ msgstr "``x * y``"
915
915
916
916
#: ../../src/basics/stdtypes.txt:42
917
917
msgid "product of *x* and *y*"
918
918
msgstr "добуток *x* і *y*"
919
919
920
920
#: ../../src/basics/stdtypes.txt:44
921
921
msgid "``x / y``"
922
- msgstr "``x + y``"
922
+ msgstr "``x / y``"
923
923
924
924
#: ../../src/basics/stdtypes.txt:44
925
925
msgid "quotient of *x* and *y*"
926
926
msgstr "частка *x* і *y*"
927
927
928
928
#: ../../src/basics/stdtypes.txt:46
929
929
msgid "``x // y``"
930
- msgstr "``x + y``"
930
+ msgstr "``x // y``"
931
931
932
932
#: ../../src/basics/stdtypes.txt:46
933
933
msgid "floored quotient of *x* and *y*"
934
934
msgstr "цілочисельне ділення *x* і *y*"
935
935
936
936
#: ../../src/basics/stdtypes.txt:48
937
937
msgid "``x % y``"
938
- msgstr "``x + y``"
938
+ msgstr "``x % y``"
939
939
940
940
#: ../../src/basics/stdtypes.txt:48
941
941
msgid "remainder of ``x / y``"
942
- msgstr "залишок від ділення``x / y``"
942
+ msgstr "залишок від ділення ``x / y``"
943
943
944
944
#: ../../src/basics/stdtypes.txt:50
945
945
msgid "``-x``"
946
- msgstr "``x + y ``"
946
+ msgstr "``-x ``"
947
947
948
948
#: ../../src/basics/stdtypes.txt:50
949
949
msgid "*x* negated"
950
950
msgstr "*x* від'ємне"
951
951
952
952
#: ../../src/basics/stdtypes.txt:52
953
953
msgid "``+x``"
954
- msgstr "``x + y ``"
954
+ msgstr "``+x ``"
955
955
956
956
#: ../../src/basics/stdtypes.txt:52
957
957
msgid "*y* unchanged"
958
958
msgstr "*y* без змін"
959
959
960
960
#: ../../src/basics/stdtypes.txt:54
961
961
msgid "``abs(x)``"
962
- msgstr "``x + y ``"
962
+ msgstr "``abs(x) ``"
963
963
964
964
#: ../../src/basics/stdtypes.txt:54
965
965
msgid "absolute value or magnitude of *x*"
966
966
msgstr "абсолютне значення або величина *x*"
967
967
968
968
#: ../../src/basics/stdtypes.txt:56
969
969
msgid "``int(x)``"
970
- msgstr "``x + y ``"
970
+ msgstr "``int(x) ``"
971
971
972
972
#: ../../src/basics/stdtypes.txt:56
973
973
msgid "*x* converted to integer"
974
974
msgstr "*x* перетворено на ціле число"
975
975
976
976
#: ../../src/basics/stdtypes.txt:58
977
977
msgid "``float(x)``"
978
- msgstr "``x + y ``"
978
+ msgstr "``float(x) ``"
979
979
980
980
#: ../../src/basics/stdtypes.txt:58
981
981
msgid "*x* converted to floating point"
982
982
msgstr "*x* перетворено на число з плаваючою комою"
983
983
984
984
#: ../../src/basics/stdtypes.txt:60
985
985
msgid "``complex(re, im)``"
986
- msgstr "``x + y ``"
986
+ msgstr "``complex(re, im) ``"
987
987
988
988
#: ../../src/basics/stdtypes.txt:60
989
989
msgid ""
@@ -995,15 +995,15 @@ msgstr ""
995
995
996
996
#: ../../src/basics/stdtypes.txt:63
997
997
msgid "``divmod(x, y)``"
998
- msgstr "``x + y ``"
998
+ msgstr "``divmod(x, y) ``"
999
999
1000
1000
#: ../../src/basics/stdtypes.txt:63
1001
1001
msgid "the pair ``(x // y, x % y)``"
1002
1002
msgstr "об'єднує ``(x // y, x % y)``"
1003
1003
1004
1004
#: ../../src/basics/stdtypes.txt:65
1005
1005
msgid "``pow(x, y)`` ``x ** y``"
1006
- msgstr "``x + y``"
1006
+ msgstr "``pow(x, y)`` ``x ** y``"
1007
1007
1008
1008
#: ../../src/basics/stdtypes.txt:65
1009
1009
msgid "*x* to the power *y*"
@@ -1022,12 +1022,12 @@ msgstr ""
1022
1022
#: ../../src/basics/stdtypes.txt:74
1023
1023
msgid ""
1024
1024
"``float(x)`` also accepts the strings ``\" nan\" `` and ``\" inf\" `` with an "
1025
- "optional prefix \" +\" or \" -\" for :abbr:Nan (Not a Number) and positive and "
1026
- "negative infinity."
1025
+ "optional prefix \" +\" or \" -\" for :abbr:`NaN (Not a Number)` and positive "
1026
+ "and negative infinity."
1027
1027
msgstr ""
1028
1028
"``float(x)`` також приймає рядки ``\" nan\" `` та ``\" inf\" `` з необов'язковим "
1029
- "префіксом \" +\" або \" -\" для: abbr:Nan( не число) і позитивна і негативна "
1030
- "нескінченність."
1029
+ "префіксом \" +\" або \" -\" для: : abbr:`NaN(Not a Number, не число)` і "
1030
+ "позитивна та негативна нескінченність."
1031
1031
1032
1032
#: ../../src/basics/stdtypes.txt:79
1033
1033
msgid "Code examples"
0 commit comments