Challenge programming

Python

Pythonを使っていろいろな計算をしてみる。| Explains various calculation methods using Python.

命令を実行してみる | Try to execute the instruction


IDELを起動させてシェルウインドウを表示させます。| Start IDEL and display the shell window.

「プロンプト」(>>>)の後に命令をします。| The command is given after the "prompt" (>>>).

その命令は「print()」と記述します。| The instruction is written as "print ()".

shellwindow Python 3.6.1 (v3.6.1:69c0db5, Mar 21 2017, 18:41:36) [MSC v.1900 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> print(2+2)
4
>>> print(99-9)
90
>>> print(2*2)
4
>>> print(8/2)
4.0
>>> print(8//2)
4
>>> print(7 % 3)
1
>>>

文字を表示させてみる

shellwindow Python 3.6.1 (v3.6.1:69c0db5, Mar 21 2017, 18:41:36) [MSC v.1900 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> print("name")
name
>>> print('name')
name
>>>

ここから文字と数字を組み合わせて表示する

shellwindow Python 3.6.1 (v3.6.1:69c0db5, Mar 21 2017, 18:41:36) [MSC v.1900 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> print("答えは", 10+20)
答えは 30
>>>

ここから文字の表示とその他のワザ

shellwindow Python 3.6.1 (v3.6.1:69c0db5, Mar 21 2017, 18:41:36) [MSC v.1900 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> print('私は"さようなら"と言った')
私は"さようなら"と言った
>>>

*尚、ここではバージョン「Python 3.6.1」を使用しています。

この本を参考に学び、完成させることができました。しかし、ここではプログラミング初心者の私が詳しく解説することは、おこがましく、難しく出来ません(ToT)
その点、この本では丁寧な解説が載っていますので、解説とともにコードを書き、完成させればより深く学ぶことができます(^.^)、実際、初心者の私でもわかりやすかったです。身に付け消えないスキルが2,000円程ならコスパよく、買っておいてよかったと満足してます。



もっと深く学びたい人にはこちらもどうぞ。| For those who want to learn more deeply, this is also recommended.

キャリアアップに必要なスキルを取得しよう。| Get the skills you need to advance your career.

Pythonエンジニア育成推進協会公式認定スクール | Officially certified school of Python Engineer Development Promotion Association.

ぺージの先頭に戻る(Return to top of page)


©2020年9月 Challenge programming

プライバシーポリシー