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.

リストの処理について(Ruby学習後のPython初学)

Last updated at Posted at 2021-01-12

#リスト処理
リスト処理の一部補足

list.py
#split関数 与えられたデータを指定の引数で分割し、リストとして戻す。以下今回は特に使用せず。

#random.randrange関数 引数のリストの要素の中でランダムに取り出す

import sys
import random
dice = []
for line in sys.stdin.readlines():
    dice.append(line.rstrip())

#入力される値(例)
1
2
3
4
5
6
#行ごとに入力された1から6までの数字がdice変数のリストに格納される

num = len(dice)

print(dice[random.randrange(num))

#diceの中身の0番目の1から5番目の6までの間のいづれかが出力される。

入力時に関しての処理補足

line = input().rstrip() #rstrip関数 文字列の末尾の改行コードを取り覗く。

import sys
line = sys.stdin.readlines() #sys.stdin.readlines関数 ファイル・複数行の入力値を全て読み込み、1行毎に処理する

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?