Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9fcd773

Browse files
[po] auto sync
1 parent 00e46c6 commit 9fcd773

1 file changed

Lines changed: 12 additions & 11 deletions

File tree

tutorial/introduction.po

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# Junkai Shao <[email protected]>, 2018
1313
# Shengjing Zhu <[email protected]>, 2019
1414
# Freesand Leo <[email protected]>, 2019
15+
# jaystone776 <[email protected]>, 2021
1516
#
1617
#, fuzzy
1718
msgid ""
@@ -20,7 +21,7 @@ msgstr ""
2021
"Report-Msgid-Bugs-To: \n"
2122
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
2223
"PO-Revision-Date: 2017-02-16 23:41+0000\n"
23-
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2019\n"
24+
"Last-Translator: jaystone776 <1732865113@qq.com>, 2021\n"
2425
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2526
"MIME-Version: 1.0\n"
2627
"Content-Type: text/plain; charset=UTF-8\n"
@@ -60,7 +61,7 @@ msgstr ""
6061

6162
#: ../../tutorial/introduction.rst:24
6263
msgid "Some examples::"
63-
msgstr "几个例子::"
64+
msgstr "几个例子"
6465

6566
#: ../../tutorial/introduction.rst:35
6667
msgid "Using Python as a Calculator"
@@ -70,7 +71,7 @@ msgstr "Python 作为计算器使用"
7071
msgid ""
7172
"Let's try some simple Python commands. Start the interpreter and wait for "
7273
"the primary prompt, ``>>>``. (It shouldn't take long.)"
73-
msgstr "让我们尝试一些简单的 Python 命令。启动解释器,等待界面中的提示符,``>>>`` (这应该花不了多少时间)。"
74+
msgstr "现在,尝试一些简单的 Python 命令。启动解释器,等待界面中的提示符,``>>>`` (很快就好)。"
7475

7576
#: ../../tutorial/introduction.rst:44
7677
msgid "Numbers"
@@ -84,38 +85,38 @@ msgid ""
8485
"languages (for example, Pascal or C); parentheses (``()``) can be used for "
8586
"grouping. For example::"
8687
msgstr ""
87-
"解释器就像一个简单的计算器一样:你可以在里面输入一个表达式然后它会写出答案。 表达式的语法很直接:运算符 ``+``、``-``、``*``、``/``"
88-
" 的用法和其他大部分语言一样(比如 Pascal 或者 C 语言);括号 (``()``) 用来分组。比如::"
88+
"解释器就像简单的计算器:输入表达式,就会给出答案。表达式的语法很直接:运算符 ``+``、``-``、``*``、``/`` "
89+
"的用法和其他大部分语言一样(比如Pascal 或 C);括号 (``()``) 用来分组。例如:"
8990

9091
#: ../../tutorial/introduction.rst:61
9192
msgid ""
9293
"The integer numbers (e.g. ``2``, ``4``, ``20``) have type :class:`int`, the "
9394
"ones with a fractional part (e.g. ``5.0``, ``1.6``) have type "
9495
":class:`float`. We will see more about numeric types later in the tutorial."
9596
msgstr ""
96-
"整数(比如 ``2``、``4``、``20`` )的类型是 :class:`int`,有小数部分的(比如 ``5.0``、``1.6`` )的类型是 "
97-
":class:`float`。 在这个手册的后半部分我们会看到更多的数字类型。"
97+
"整数(如,``2``、``4``、``20`` )的类型是 :class:`int`,有小数部分的(如,``5.0``、``1.6`` )的类型是 "
98+
":class:`float`。在本教程后半部分将介绍更多的数字类型。"
9899

99100
#: ../../tutorial/introduction.rst:65
100101
msgid ""
101102
"Division (``/``) always returns a float. To do :term:`floor division` and "
102103
"get an integer result (discarding any fractional result) you can use the "
103104
"``//`` operator; to calculate the remainder you can use ``%``::"
104105
msgstr ""
105-
"除法运算 (``/``) 永远返回浮点数类型。如果要做 :term:`floor division` 得到一个整数结果(忽略小数部分)你可以使用 "
106-
"``//`` 运算符;如果要计算余数,可以使用 ``%`` ::"
106+
"除法运算 (``/``) 总是返回浮点数类型。用 ``//`` 运算符执行 :term:`floor division` "
107+
"的结果是整数(忽略小数部分);计算余数,使用 ``%``"
107108

108109
#: ../../tutorial/introduction.rst:79
109110
msgid ""
110111
"With Python, it is possible to use the ``**`` operator to calculate powers "
111112
"[#]_::"
112-
msgstr "在Python中,可以使用 ``**`` 运算符来计算乘方 [#]_ ::"
113+
msgstr "Python 使用 ``**`` 运算符计算乘方 [#]_"
113114

114115
#: ../../tutorial/introduction.rst:86
115116
msgid ""
116117
"The equal sign (``=``) is used to assign a value to a variable. Afterwards, "
117118
"no result is displayed before the next interactive prompt::"
118-
msgstr "等号 (``=``) 用于给一个变量赋值。然后在下一个交互提示符之前不会有结果显示出来::"
119+
msgstr "等号``=``)用于给变量赋值。然后,在下一个交互提示符前,不会输出任何结果:"
119120

120121
#: ../../tutorial/introduction.rst:94
121122
msgid ""

0 commit comments

Comments
 (0)