Created
December 11, 2025 18:10
-
-
Save zonca/3a60b36f4cf5f9c5f9d0863a51c21813 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # %% [markdown] | |
| # # My Jupytext Example | |
| # | |
| # This is a simple Python script meant to be converted to a Jupyter Notebook using Jupytext. | |
| # %% | |
| import pandas as pd | |
| data = {'col1': [1, 2], 'col2': [3, 4]} | |
| df = pd.DataFrame(data) | |
| print(df) | |
| # %% [markdown] | |
| # This is another markdown cell. | |
| # %% | |
| print("DataFrame multiplied by 2:") | |
| print(df * 2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment