标签:com int print loading src http 多个 a* code
‘‘‘ these are comments my first py prog ‘‘‘ print("math copute: \n") a=2 b=3 c=a+b
d=a**b
#### " " 里面原样输出, 多个输出 用 , #############
print("a =",a,", b =",b,", a + b =",c,", a ** b =",a**b)
a=11
b=2
c=a//b # // 是整除运算
print("a =",a,", b =",b,", a // b =",c,", a % b =",a%b)
===============================================================================
使用 + 连接字符串
使用 * 构造多个字符串
标签:com int print loading src http 多个 a* code
原文地址:https://www.cnblogs.com/abel2020/p/13061944.html