怎样把数学公式转换成字符串
import randoms1 = random.randint(1,20)
s2 = random.randint(1,20)
假如说s1 = 10 s2 = 8
我要求print(s1 + s2)的结果是 10 + 8 而不是s1 + s2 也不是18。
有哪位大佬知道应该怎么做?谢谢! 本帖最后由 Twilight6 于 2020-6-22 14:55 编辑
如果单纯加法可以这样哈哈:
import random
s1 = random.randint(1,20)
s2 = random.randint(1,20)
print(str(s1),'+',str(s2)) 重写个函数 本帖最后由 张啸zx 于 2020-6-22 15:05 编辑
塔利班 发表于 2020-6-22 14:52
重写个函数
import random
s1 = int(random.randint(1,20))
s2 = int(random.randint(1,20))
print (s1+s2)
加个int就好 字符串拼接不得了么?… 张啸zx 发表于 2020-6-22 15:01
import random
s1 = int(random.randint(1,20))
s2 = int(random.randint(1,20))
.... 本身 randint 方法就是取出整型,你没有必要再将他转化为整型哈~
而且你要认真点看楼主需求,楼主需要的是打印时候打印出 s1 的值 + s2 的值不是相加后的结果哈
张啸zx 发表于 2020-6-22 15:01
import random
s1 = int(random.randint(1,20))
s2 = int(random.randint(1,20))
你在逗我 本帖最后由 _荟桐_ 于 2020-6-22 23:49 编辑
能凑乎用一用,可以加剪乘 真除,地板除,求余,平方
前提是把数字用intt实例化,比较麻烦
class intt(int):
def __add__(self,other):
return str(self) + "+" + str(other)
def __sub__(self,other):
return str(self) + "-" + str(other)
def __mul__(self,other):
return str(self) + "*" + str(other)
def __truediv__(self,other):
return str(self) + "/" + str(other)
def __floordiv__(self,other):
return str(self) + "//" + str(other)
def __mod__(self,other):
return str(self) + "%" + str(other)
def __pow__(self,other):
return str(self) + "**" + str(other)
# 把要打印的东西intt(num)
# 然后进行操作
a,b,c = intt(1),intt(2),intt(3)
print(a + b)
print(a % b)
改成
a = intt(random.randint(1,20)) 类和对象那里讲的
就是继承int类,然后重写一些算术方法 本帖最后由 km82805046 于 2020-6-23 00:04 编辑
不知道我理解的对不对 是打印出随机数产生的值S1 S2 再把S1 S2值相加 并打印出来! 可以使用格式化打印
import random
s1 = random.randint(1,20)
s2 = random.randint(1,20)
print("{} + {} = {} ".format(s1, s2, s1+s2))
print("%d + %d = %d " % (s1,s2, s1+s2)) Twilight6 发表于 2020-6-22 14:54
如果单纯加法可以这样哈哈:
你是最佳答案,可惜我弄到下面去了,怎么办? glacierjin 发表于 2020-6-23 09:46
你是最佳答案,可惜我弄到下面去了,怎么办?
没事~
@不二如是麻烦改下最佳哈~ 直接把最后的一行写成print(s1,"+",s2)即可{:10_254:}
页:
[1]