摘要: 程序文件ex2_3.py L = ['abc', 12, 3.45, 'Python', 2.789] print(L) #输出完整列表 print(L[0]) #输出列表的第一个元素 L[0] = 'a' #修改列表的第一个元素 L[1:3] = ['b', 'Hello'] #修改列表的第二、三 阅读全文
posted @ 2024-10-14 09:53 qi11 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 程序文件ex2_2.py import numpy as np a=[] with open('data2_2.txt') as f: for (i, s) in enumerate(f): a.append([s.count('a'), s.count('c'), s.count('g'),s.c 阅读全文
posted @ 2024-10-14 09:52 qi11 阅读(6) 评论(0) 推荐(0) 编辑
摘要: -- coding: utf-8 -- """ Created on Sun Oct 13 11:32:13 2024 @author: 26606 """ str1="Hellow World!" print(str1) print(str1[0:-1]) print(str1[-1]) prin 阅读全文
posted @ 2024-10-14 09:51 qi11 阅读(3) 评论(0) 推荐(0) 编辑