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?

コマンドライン引数をリストに格納し、出力してみた。

Last updated at Posted at 2022-08-15

コマンドライン引数をリストに格納し、出力するプログラムを作りました。
使用例:

yusuke@mbp 20220815 % python main.py "apple" "orange"
['apple', 'orange']
  • 解説
    引数がない場合は、「引数を入力してください」と返されるようにしました。
    コマンドライン引数は、文字列なので、リスト型に型変換しています。

  • ソースコード

import sys


def main():
    args = list(sys.argv[1:])
    if not args:
        print("引数を入力してください")
        sys.exit(1)


    ex_lists = []
    ex_lists.append(args)


    for ex_list in ex_lists:
        print(ex_list)


    sys.exit(0)


if __name__ == '__main__':
    main()
0
0
1

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?