我遇到了这个脚本的问题,但我发现它没有任何问题,任何人都可以帮忙吗?
$scope.data = {
currencyVal: 'USD',
shippingMethod: 'pronto',
weight: 1,
output: function() {
...
}
};
答案 0 :(得分:1)
如果您使用的是Python 2:
number_input = input()
对于Python 3:
number_input = int(input())