2024年3月3日
摘要: python数据类型 1.数值类型 counter = 100 # 赋值整型变量 miles = 1000.0 # 浮点型 name = "John" # 字符串 print(counter) print(miles) print(name) 2.字符串 str1 = "hello world" p 阅读全文
posted @ 2024-03-03 20:32 无名之辈的ggb 阅读(1) 评论(0) 推荐(0) 编辑