码迷,mamicode.com
首页 > 编程语言 > 详细

[python]特殊输入格式(输入中包含空格逗号等)

时间:2019-01-24 20:10:23      阅读:950      评论:0      收藏:0      [点我收藏+]

标签:pytho   type   特殊   python   lis   空格   格式   input   inpu   

  • 特殊输入格式

    • 输入中包含空格

      a,b=map(int,input().split())

      a,b,c=map(int,input().split())

    • 输入中包含 ‘/‘

      a,b=map(int,input().split(‘/‘))

    • 输入中包含‘,‘

      a,b=map(int,input().split(‘,‘))

[python]特殊输入格式(输入中包含空格逗号等)

标签:pytho   type   特殊   python   lis   空格   格式   input   inpu   

原文地址:https://www.cnblogs.com/xzzheng/p/10316428.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!