Posts by DAYMON CARVALHO REBAC • 1 point
2 posts
-
0
votes1
answer392
viewsA: Limit number of characters per Dataframe Python column
Solution found: data['J'] = data['J'].str[:10] data['K'] = data['K'].str[:14] data['L'] = data['L'].str[:1] data
-
0
votes1
answer392
viewsQ: Limit number of characters per Dataframe Python column
Need to limit the number of characters per column in Dataframe to Insert in SQL Server. Example: I have a Dataframe with 3 columns and 1k of rows (Column J/ K/ L) and I need to limit the Dataframe’s…