Run ❯
Get your
own Python
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
import shutil usage = shutil.disk_usage('.') print(f'Total space: {usage.total // (1024**3)} GB') print(f'Free space: {usage.free // (1024**3)} GB')
Total space: 1831 GB
Free space: 1543 GB