Vim简单操作

普通模式 ---即初始模式: 左h 右l 上k 下j 0 定位到行首 = ^ $ 定位到行尾 b 定位到单词首 e 定位到单词尾 w 定位到下一单词起始处 gg 定位到文件开头 G 定位到文件末尾 插入模式 ----esc退出 ...

Python项目_数据可视化

mpl_squares.py import matplotlib.pyplot as plt input_value = [1, 2, 3, 4, 5] squares = [1, 4, 9, 16, 25] # 尝试根据这些数字绘制出有意义的图形 # lineheight决定了plot()绘制的线条粗细 plt.plot(input_...

Python基础

print("Hello") # 变量的使用 message = "hello" print(message) # test 2-1 message="simple hello" print(message) # test 2-20 message = "hello" print(message...