摘要:
题: """ 将文件对应的检索打印出来 test = input (">>>") for item in test : print (item) """ 答案: 1: test = input (">>>") # 假如输入的是qwe print (test) # test = qwe L = len 阅读全文
摘要:
2、基本数据类型 数字 int , 所有的功能,都放在int里 a1 = 123 a2 = 123 - int 将字符串装换为数字 a = "123" print (type (a),a) b = int (a) print (type (b),b) num = "0011" v = int (nu 阅读全文