Python

Python いろいろ

print関数の色々を試してみた。

>>> print("僕は眼鏡をかけています。ずっと")
僕は眼鏡をかけています。ずっと
>>>
>>> print(1+3)
4
>>> print("arigatou".upper())
ARIGATOU
>>>
>>> print("眼鏡" + "をかける")
眼鏡をかける
>>>
>>>
>>> print("I am a ragan".replace("ragan","megane"))
I am a megane
>>>
>>>
>>> print("私は{}をかけています".format("眼鏡"))
私は眼鏡をかけています
>>>

Pythonドキュメント

Python標準ライブラリのドキュメント
https:/docs.python.org/3/

matplotlib
https://matplotlib.org/index.html

-Python