Merge pull request #4710 from kenryuS/python-jajp-4709

[python/ja-jp] added translations
This commit is contained in:
Boris Verkhovskiy 2024-04-04 08:08:41 -07:00 committed by GitHub
commit cdd8e99d51
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,6 +11,7 @@ contributors:
translators:
- ["kakakaya", "https://github.com/kakakaya"]
- ["Ryota Kayanuma", "https://github.com/PicoSushi"]
- ["Kenryu Shibata", "https://github.com/kenryuS"]
filename: learnpython-jp.py
lang: ja-jp
---
@ -180,7 +181,7 @@ bool({}) # => False
bool(()) # => False
####################################################
# 2. Variables and Collections
# 2. 変数と集合
####################################################
# Python にはprint関数があります。
@ -400,7 +401,7 @@ filled_set | other_set # => {1, 2, 3, 4, 5, 6}
####################################################
# 3. 制御の流れとiterable
# 3. 制御の流れと反復可能オブジェクト
####################################################
# まずは変数を作りましょう。
@ -429,7 +430,7 @@ for animal in ["dog", "cat", "mouse"]:
print("{} is a mammal".format(animal))
"""
"range(数値)" は、ゼロから与えられた数値までのiterableを返します。
"range(数値)" は、ゼロから与えられた数値までのiterable(反復可能オブジェクト)を返します。
出力:
0
1
@ -649,7 +650,7 @@ print(ceil(3.7)) # => 4.0
print(floor(3.7)) # => 3.0
# 全部の関数をモジュールからインポートすることができます。
# Warning: この方法は推奨されません。
# 注意: この方法は推奨されません。
from math import *
# 短い名前でモジュールをインポートすることができます。
@ -990,9 +991,9 @@ print(say()) # Can you buy me a beer?
print(say(say_please=True)) # Can you buy me a beer? Please! I am poor :(
```
## Ready For More?
## さらなる学習の準備ができましたか?
### Free Online
### 無料のオンラインコンテンツ
* [Automate the Boring Stuff with Python](https://automatetheboringstuff.com)
* [Ideas for Python Projects](http://pythonpracticeprojects.com)