相信很少有人会深入了解这两个命令的不同之处,请看下图的输出结果: 当我们输入"I am Inkfish"时输出的结果为一个字符串‘I am Inkfish’,意味着输入的类型得以被保存,但是当我们输入print("I am Inkfish")时,输出结果只是I am Inkfish并不含有类型。 为什么要提及这个呢?请看如下代码: class Debug:def __init__(self)
1、将一个列表的数据复制到另一个列表中。 a = [1,2,3,4] c = [] for i in range(len(a)): c.append(a[i]) print(c) 换种方法: a = [1,2,3,4] b = a.copy() print(b) 2、输出 9*9 乘法口诀表。 for i in range(1,10): print() for j in
1、问题 /* Write a program that prints the numbers from 1 to 100,but for multiples of three print “Fizz” instead of the number and for the multiples of five print "Buzz". For numbers which are multipl
执行代码: from loguru import loggerfor i in range(1000):print(i)logger.info(i) 执行效果: 012342024-05-25 09:52:01.974 | INFO | __main__:<module>:6 - 02024-05-25 09:52:01.974 | INFO | __main