python语言程序设计 梁勇_Python 语言程序设计二级教程第七章编程题

b51ddc1ad0ba3356f8347a91ac11ed3c.png
  • 编程题1
f=open('file1.txt','w')
f.write('My name is Lin')
f.write('I am from China')
f.close()
k=open('file1.txt','r')
j=k.read()
p=input('请输入一个需要查找的字符:')
num=0
for i in j:
    if p==i:
        num+=1
print(num)
  • 编程题2
f=open('file1.txt','w')
f.write('My name is Lin')
f.write('I am from China')
f.close()
with open('file1.txt','r') as fp:
    line=fp.readlines()
    newLine=[i.swapcase() for i in line]
with open('file1.txt','w') as fp:
    fp.writelines(newLine)
  • 编程题3
import numpy as np
data=np.random.randn(10,10)
np.savetxt('Matrix.csv',data,delimiter=',')
  • 编程题4

转载

https://blog.csdn.net/zhi_it_coder/article/details/80740078​blog.csdn.net
  • 编程题5(我用 pandas 好像有点粗暴)
import pandas as pd
lie=[]
q=1
while q==1:
    p=input('请输入列表需要包含的元素:')
    lie.append(p)
    q=eval(input('继续,输入(0或1):'))
data=pd.DataFrame(lie)
data.to_csv('list.csv',encoding='gbk')
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值