Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 2.24 KB

python.md

File metadata and controls

40 lines (32 loc) · 2.24 KB

Python Links and Tutorials

Project/Repo Structure

It is worth your effort to standardize on repository structures to make analysis/collaboration/reproducibility easier.

Interactive Work with Python Files

For displaying graphs/output/etc. inline, create a file

import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 20, 100)  # Create a list of evenly-spaced numbers over the range
plt.plot(x, np.sin(x))       # Plot the sine of each x point
plt.show()     

And then <Ctrl-Shift-P> to enter the command, and choose > Run Current File in Python Python Interactive window to see plots in the interactive terminal.

Alternatively, you can run the file directly in normal terminal

VSCode Tricks

  • When code black is installed as the default in vscode, <Ctrl-Shift-P> to find Format or choose Shift-Alt-F to format with the standard
  • <Shift-Enter> in a .py file will run the python in an interactive window or terminal

PyTorch