a = (math.ceil(6*random.random()))
b = (math.ceil(6*random.random()))
c = (math.ceil(6*random.random()))
CD = (10)
e = (a+b+c)
print ("a = {0}" .format (a))
print ("b = {0}" .format (b))
print ("c = {0}" .format (c))
print ("a+b+c = {0}" .format (e))
if a+b+c > CD:
print ("Maior que {0}" .format(CD))
else:
print ("Menor que {0}" .format(CD))
我想允許用戶更改變量CD。我怎樣才能做到這一點?Python如何設置一個變量來使用戶插入其值?
或'浮動(的raw_input( 「輸入一個數字:」))'如果在Python 2.7 – aruisdante 2014-12-13 15:38:19
THX,把它添加到anwser。 – elyase 2014-12-13 15:40:26