• 特殊输入格式

    • 输入中包含空格

      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(','))

相关文章:

  • 2022-02-08
  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
  • 2021-07-18
  • 2021-12-31
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-27
  • 2022-12-23
  • 2022-12-23
  • 2021-07-30
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案