python input输入框如何设置默认值

2024-11-03 03:41:06
推荐回答(5个)
回答(1):

这个很简单,在input后面加 “or 默认值”就行了,原理是这样的:如果未输入任何内容,则input将返回空字符串. python中的空字符串是False bool(“”) – >假。
按你的例子:
a=input("2+2=?") or "4"
print a

回答(2):

自己定义函数吧:
>>> def get(msg,default=0):
r=input(msg)
if r=='':
return default
return r

>>> get('input a integer:',32)
input a integer:10
'10'
>>> get('input a integer:',32)
input a integer:
32
>>>

回答(3):

input输入框内预设默认值是不行的!

回答(4):

这个可以利用if条件来判断实现,以下是代码:
a = input('2 + 2 =: ')
output = a if a else 4

回答(5):

python的input()函数,直接回车默认返回值是''(空字符串)。

按你的要求,你可以这样写:

a = input('2 + 2 = ')
if a == '':
    print(4)