atwood-pan

 

2021年8月27日

Python Code_03数据类型

摘要: 数据类型 author : 写bug的盼盼 development time : 2021/8/27 19:59 变量定义 name = ‘阿哈’ print(name) print(‘标识’,id(name)) # >内存地址 print(‘类型’,type(name))# 数据类型 print( 阅读全文

posted @ 2021-08-27 21:02 JavaCoderPan 阅读(5) 评论(0) 推荐(0) 编辑

Python Code_02

摘要: author : 写bug的盼盼 development time : 2021/8/27 19:59 变量定义 name = ‘阿哈’ print(name) print(‘标识’,id(name)) # >内存地址 print(‘类型’,type(name))# 数据类型 print(‘值’,n 阅读全文

posted @ 2021-08-27 20:19 JavaCoderPan 阅读(3) 评论(0) 推荐(0) 编辑

Python Code_01

摘要: author : 写bug的盼盼 development time : 2021/8/27 19:41 输出数字 print(520) 输出字符串 print(‘HelloWorld’) print(“Hello”) 输出含有运算符的表达式 print(3+1) 将数据输出文件中 fp = open 阅读全文

posted @ 2021-08-27 19:56 JavaCoderPan 阅读(3) 评论(0) 推荐(0) 编辑

导航