79753280

Date: 2025-09-02 09:10:23
Score: 2
Natty:
Report link

Using this example Excel-File and copying it's content by strg + c:

Example Excel-File

this python code creates a dataframe out of the clipboard-content:

import pandas as pd

df = pd.read_clipboard(sep=r'\s\s+')

Resulting df:


    a   b   c
0   12  1   4
1   13  1   5
2   14  1   6
3   15  1   7
4   16  1   8
5   17  1   9

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Bending Rodriguez