Python 3 同时给多个常量赋值的办法?
是那种能够输入任意变量,然后结果可以显示唯一常量或者多个常量得;也就是说怎样用两种以上的变量来表示同一种常量!!...
是那种能够输入任意变量,然后结果可以显示唯一常量或者多个常量得;也就是说怎样用两种以上的变量来表示同一种常量!!
展开
2个回答
展开全部
# Have a look 👇👇👇
a = int(input("Please enter the words:"))
if a == 123:
print('x')
elif a == 231:
print('y')
elif a == 312:
print('z')
else:
print('Nothing at all.')
其中 123,231,312 均属于变量,可以被任意更改。而 x,y,z 则属于常量,将会被 a 赋值。
File Stdin..!
a = int(input("Please enter the words:"))
if a == 123:
print('x')
elif a == 231:
print('y')
elif a == 312:
print('z')
else:
print('Nothing at all.')
其中 123,231,312 均属于变量,可以被任意更改。而 x,y,z 则属于常量,将会被 a 赋值。
File Stdin..!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询