摘要:
1、作用 字符串类型可以保存字符数据,并且进行相应的操作 2、定义 msg='hello' # msg=str('msg') print(type(msg)) 3、类型转换 str可以把任意其他类型都转成字符串 res=str({'a':1}) print(res,type(res)) 4、使用:内 阅读全文
摘要:
一:int类型 1、作用: 记录整数,进行运算 2、定义: age = 10 # age=int(10) 名字(参数) print('hello','world') x=int(10) name=input('xxx') res=print('xxx') # 没有产品 print(res) 3、类型 阅读全文
摘要:
# 一:for循环# 1.1 for循环嵌套之打印99乘法表 for i in range(1, 10): for j in range(1, i+1): result = i * j print("{}*{}={}".format(i, j, result), end=" ") print("") 阅读全文