#! /usr/bin/python x = input(‘please input a integer:‘) x = int (x) if (x < 0 ): print(‘你输入了一个负数‘) else: print(‘你输入了一个0或正数‘)
[[email protected] pythonTest]# ./test1.py please input a integer:-1 你输入了一个负数 [[email protected] pythonTest]# ./test1.py please input a integer:1 你输入了一个0或正数 [[email protected] pythonTest]#
时间: 2024-12-17 16:48:33