mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
(cherry picked from commit 658f2d5609852b00b7e1011c3841c7266c202686) IJ-MR-168659 GitOrigin-RevId: 66806362570ef564b1495ba5a9afcd32a50859fb
6 lines
117 B
Python
6 lines
117 B
Python
import pandas as pd
|
|
df = pd.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6], "c": [7, 8, 9]})
|
|
|
|
if df is not None:
|
|
pass
|