Skip to content

Instantly share code, notes, and snippets.

@hamaguchi-amago
Last active October 4, 2019 13:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hamaguchi-amago/a264735621e14e284be5d1bd577c80ec to your computer and use it in GitHub Desktop.
Save hamaguchi-amago/a264735621e14e284be5d1bd577c80ec to your computer and use it in GitHub Desktop.
条件分岐(if文)
# -*- coding: utf-8 -*-
import sys
args = sys.argv
param = args[1]
if param.isdecimal():
print("数字です")
print("処理終了")
@hamaguchi-amago
Copy link
Author

ブログの記事で作成しました。
興味のある方はご覧ください。

【Python】条件分岐(if、elif、else)のサンプルプログラム
https://neko-py.com/python-conditional-branch

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment