Python的map函数怎么使用;
money, things = map(int, "10000 5".split())
解析:
int是函数名;
"10000 5".split() 是个数组,等价于["10000","5"]
这句话的功能是,等价与对
money = int("1000")
things = int("5")
Python的map函数怎么使用;
money, things = map(int, "10000 5".split())
解析:
int是函数名;
"10000 5".split() 是个数组,等价于["10000","5"]
这句话的功能是,等价与对
money = int("1000")
things = int("5")