Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 794 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 794 Bytes

Python on Replit

This is a template to get you started with Python on Replit. It's ready to go so you can just hit run and start coding!

Running the repl

Simply hit run! You can edit the run command from the .replit file.

Installing packages

To add packages to your repl, you can just import directly in the file you want to use the package in, and it will automatically be installed when you press the run button. Like below:

import math
import pandas as pd
from flask import Flask

You could also install packages by using the Replit packager interface in the left sidebar.

Help

If you need help you might be able to find an answer on our docs page. Feel free to report bugs and give us feedback here.