- 博客(4)
- 收藏
- 关注
原创 CSDN编辑器中图片居中与缩放
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2021-03-09 17:11:19 168
原创 2.绘图&np&pd
Matplotlib 1.基础操作 1.绘制基本图像 import matplotlib.pyplot as plt import numpy as np x = np.linspace(-3,3,50) y1 = 2*x+1 y2 = x**2 plt.figure() plt.plot(x,y1) plt.figure(num=3,figsize=(8,5)) plt.plot(x,y2) plt.plot(x,y1,color='red',linewidth=1.0,linestyle='--'
2021-03-09 15:56:40 128
原创 1.Python基础2
列表生成式和生成器表达式 列表生成式:[<value> for <item> in <sequence> if <condition>] 生成器表达式:(<value> for <item> in <sequence> if <condition>) 只有[ ]和( )的区别。 枚举enumerate(),返回索引和元素,参数为可遍历对象。 with语句 # 打开文件 with open('./data.txt'
2021-03-09 15:13:02 70
原创 1.Python基础
Python基础 1.输出 print(2 ** 2) print(" *** ") print(" +++ ",end=".") 输出: 4 *** +++. 2.数据类型 1.整型(int) 2.字符串(str) 字符串格式化: %:str % ( ),即:字符串 % 元组 name = "Kit" age = 18 #test = "我是%s,今年%d岁" %("kti",18) test = "我是%s,今年%d岁" %(name,age) test = "我是%s,今年%d岁" dat
2021-03-06 09:37:01 130
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人