首页
编程
java
php
前端
首页
编程
java
php
前端
Python的print函数问题
如图报错
x,y是字符串类型,不能进行四则运算
输出时,修改为如下:
print
(
int
(
x
)*
int
(
y
))
因为input是字符串,前面再加个int转换一下
点击展开全文