如何存储一个随机的答案,以便以后在python中使用

时间:2016-05-05 15:17:25

标签: python

我是编码和思考id的新手,试试python。 这就是我所看到的:

 original = raw_input('Enter a word:') # how to store answer to this

 if len(original) > 0 and original.isalpha():

    print original.lower() 

我想知道如何存储任何随机单词以回应“输入单词”。如果有人输入“bob”或“Tingle”,那么该单词将如何存储到变量中?即变量=“回答”

2 个答案:

答案 0 :(得分:0)

// initialize multiplier and result outside the loop $multiplier = 1; $result = 0; // loop over the values foreach ($temp_array as $value) { // add the value * multiplier to the result $result += $value * $multiplier; // switch the multiplier to the alternating value if ($multiplier == 1) { $multiplier = 3; } else { $multiplier = 1; } // The switch can be done more simply using a ternary operator like this: // $multiplier = $multiplier == 1 ? 3 : 1; } 将返回您输入的内容,因此raw_input变量将存储您键入的字符串,其类型为original

例如:

string

答案 1 :(得分:0)

想通了......我想!

original = raw_input('Enter a word:')
if len(original) > 0 and original.isalpha():
    print original.lower()
first = original[0].lower()
print first
word = original.lower()
屏幕上的

将返回:

输入一个单词:Bob(点击回车)

鲍勃

B'/ P>

感谢您的帮助