我有一段python代码,我需要重复但只改变两件事,有没有办法缩短它?
代码:
if int(input)==1:
output=10
if int(input)==2:
output=9
一直到
if int(input)==88:
output=-77
有没有办法缩短这个
答案 0 :(得分:0)
你可以尝试使用这样的东西,它是一种你可以设置的循环 它运行的次数。您可能需要根据具体情况稍微改变一下
n = 1
while n <= 'number of your choice':
n += 1
# And you would then do what ever calculations you want here