0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Pythonによるrandom変数と条件分岐(Ruby学習後のPython初学)

Posted at

#Random数

dice.py
import random
number = random.randint(1,6)
print(number)

import random にてrandomモジュールをインポートする。
そして、変数に random.randintrandom.random で整数のみか少数含むのかを指定し、
()内の変数に範囲を指定する(今回の場合はサイコロと考え、1〜6の範囲の整数)。

#条件式

if.py
if 条件式1:
    条件式1が成り立った時の処理
elif 条件式2:
    条件式2が成り立った時の処理
else :
    条件式が成り立たなかった時の処理 

#####Rubyとの違い
1.インデントとして半角スペースを4つあけるのがPythonの特徴
(インデントの位置がずれただけでエラーになる。Rubyの場合は半角スペース2つが基本)

2.endで閉じることは不要だが条件式の後に**:**をつける
3.elif(複数条件式)(Rubyの場合はelsif)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?