我从API调用中得到一个20位数字。我想保留javascript中的数字。我怎样才能做到这一点? 例如:来自API的响应是123456789123456789.我想将其转换为字符串或将其保留为javascript中的数字(如果可能)。结果需要“123456789123456789”。
答案 0 :(得分:0)
假设您的API调用函数名称为while loser != 'Lose':
while True:
user_choice = str(input('Enter your choice: '))
user_choice = (user_choice.lower())
if user_choice != 'r' and user_choice != 'p' and user_choice != 's':
print(" Please enter either r, s or p")
else:
break
:
myAPICall