Ctrl+Enter Run Ctrl+/ Comment Ctrl+F Find Ctrl+S Save
Output
Plot Output
Share Your Code
Copy this link to share your code with others
Working with Uploaded Files:
# CSV Files: import io import pandas as pd df = pd.read_csv(io.StringIO(uploaded_files['data.csv'])) # JSON Files: import json data = json.loads(uploaded_files['data.json']) # Text Files: content = uploaded_files['readme.txt'] # Binary Files (images, etc): # Files are stored as base64 data URLs image_data = uploaded_files['image.png']
Keyboard Shortcuts
Speed up your coding with these shortcuts
Run code
Ctrl+Enter
Comment/Uncomment
Ctrl+/
Save to browser
Ctrl+S
Find
Ctrl+F
Find & Replace
Ctrl+H
Indent
Tab
Unindent
Shift+Tab
Duplicate line
Ctrl+D
Move line up/down
Alt+↑/↓
Select all
Ctrl+A
Drop files here
Supported formats: CSV, JSON, TXT, CSS, JS, and more