Agile育成ブログ
未来を変える喜びを
Python

リスト


Warning: count(): Parameter must be an array or an object that implements Countable in /home/xs638785/agile-software.site/public_html/wp-content/plugins/rich-table-of-content/functions.php on line 490
例文働き
list.append(要素)リストに要素を追加する。
del list[]指定した要素を削除する
list.remove(値)リストから値と一致する最初の要素を取り除く
list.pop()リストの最後の要素を取り除き、その値を返す。

inputしたものをリスト化する

1 1024 をリスト化して変数に入れることを考えると
list=input().split(" ")

#実行結果
['1','1024']

リスト内包表記

繰り返し処理によってリストを作成

#2の乗計算をリストにすることを考えると
lst=[2**x for x in range(3)]

#実行結果
[1,2,4]

リストの数を数値に変換

#文字列の数値がリスト化されている変数lsに対し
ls = ["10", "20", "30", "40", "50"]
#以下のコードを実行すると数値に変換される
num_list = [int(i) for i in ookii]
ls = [10, 20, 30, 40, 50]

C083:売上の発表

# coding: utf-8
# 自分の得意な言語で
# Let's チャレンジ!!
kazu,tani = map(int,input().split(" "))

x=[int(input()) for i in range(kazu)]
ookii=max(x)

f=int(ookii/tani)


for i in range(kazu):
    a=int(x[i]/tani)

    print(str(i+1)+':'+str("*"*a+"."*(f-a)))

You cannot copy content of this page