题解 | #乘法与幂运算#
乘法与幂运算
https://www.nowcoder.com/practice/2b0e586dfdbe4da4aabccbc94a4f7224
#print("{}\n{}".format(x*y,x**y))
#####有意思的print
#fotmat作为Python的的格式字符串函数,主要通过字符串中的花括号{},来识别替换字段,从而完成字符串的格式化。
#1.通过格式化{}
#print("i {}".format("222"))
#2.通过数字参数传入位置参数
#print("i {1} you {0}".format("hao","huai"))
#通过关键字
#print("i {age} is ".format(age="18"))
#字典是**dict变量 列表是*s变量