免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4056 | 回复: 1
打印 上一主题 下一主题

input输入方法中怎么引用变量? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-09-05 17:05 |只看该作者 |倒序浏览
本帖最后由 nugget 于 2013-09-05 17:06 编辑

实现效果:
num1=input("please input num1:")
num2=input("please input num2:")
num3=input("please input num3:")
num4=input("please input num4:")
please input num1:
please input num2:
please input num3:
please input num4:

如果写在for循环中input方法不能引入变量吧
num={}
for k in range(1,5)
    num[k]=input("please input num:")这里能用变量吗?




论坛徽章:
11
技术图书徽章
日期:2014-03-01 14:44:34天蝎座
日期:2014-05-21 22:11:59金牛座
日期:2014-05-30 17:06:14
2 [报告]
发表于 2013-09-05 17:50 |只看该作者
动手试下不就知道了?
  1. Python 2.6.6 (r266:84292, Jul 10 2013, 22:43:23)
  2. [GCC 4.4.7 20120313 (Red Hat 4.4.7-3)] on linux2
  3. Type "help", "copyright", "credits" or "license" for more information.
  4. >>> num = [ raw_input('pls input num{0}: '.format(i)) for i in range(1, 5) ]
  5. pls input num1: 9
  6. pls input num2: 8
  7. pls input num3: 7
  8. pls input num4: 6
  9. >>> num
  10. ['9', '8', '7', '6']
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP