1 Star 0 Fork 0

周凌志/爬虫作业

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.py 771 Bytes
一键复制 编辑 原始数据 按行查看 历史
周凌志 提交于 2021-09-10 01:03 . 1
print("please input your name!");
print("周凌志");
print("Hello!"+ ","+ "周凌志"+"!");
import random
b=int(input("请输入你的参数:"))
while b>0:
print(random.randint(0,100))
b-=1
a=str(input("请输入字符串:"))
print("字符串的长度是:"+ str(len(a)))
print("字符串的前两个字符:"+a[0:2])
print("字符串的后两个字符:"+a[(len(a)-2):len(a)])
print("不包括最后一个字符的字符串:"+a[(len(a)-3):(len(a)-1)])
import csv
d_1="周凌志"
d_2="0228200139"
d_3="20大数据1班"
d_4="161"
d_5="47"
d_6="20"
output_list = [d_1,d_2,d_3,d_4,d_5,d_6]
with open('test1.csv','a+',encoding='UTF-8',newline='') as csvfile:
w = csv.writer(csvfile)
w.writerow(output_list)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhou-lingzhi1218/crawler-operation.git
git@gitee.com:zhou-lingzhi1218/crawler-operation.git
zhou-lingzhi1218
crawler-operation
爬虫作业
master

搜索帮助