python练习-raw_input()
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python练习-raw_input()相关的知识,希望对你有一定的参考价值。
#可以直接将raw_input()的结果赋给response变量,而且()里的内容可以直接输入,无需之前的例子中先print一个提示,再用raw_input()让大家输入#
response = raw_input("how may students are in your class")
numberofstudents=int(response)
print "there are", numberofstudents
以上是关于python练习-raw_input()的主要内容,如果未能解决你的问题,请参考以下文章