I am trying to write this code in Python in Visual Studio. For some reason I cant get the code to align automatically.
I wrote this code, based on Syntax, the code is not wrong but I cant get Python to create the Secondary_Key and based on my understanding its because the .assign
doesnt align.
So can someone help with understand why this is happening and how to get this resolved.
The code I wrote this this.
Final_df_With_Key = (Final_df
.assign(Primary_Key = lambda df : df["Item-Color"] + "-" + df["DC"] +
"-" + df["Subsidiary"] + "-" + df["Year"].astype(str) + "-" + df["Month"].astype(str) + "-" + df["B2B"]).assign(Secondary_Key = lambda df : df["Item-Color"] + "-" + df["DC"])
.loc[:,['Primary_Key'] + [col for col in Final_df.columns if col != 'Primary_Key']])
When I press enter before the .assign
for the secondary key, the alignment becomes this.
Final_df_With_Key = (Final_df
.assign(Primary_Key = lambda df : df["Item-Color"] + "-" + df["DC"] +
"-" + df["Subsidiary"] + "-" + df["Year"].astype(str) + "-" + df["Month"].astype(str) + "-" + df["B2B"])
.assign(Secondary_Key = lambda df : df["Item-Color"] + "-" + df["DC"])
.loc[:,['Primary_Key'] + [col for col in Final_df.columns if col != 'Primary_Key']])
I tried pressing tab and backspace but this wont automatically wont align, unless you press spacebar to get it to align.
Please let me know you opinion on this.
I am trying to write this code in Python in Visual Studio. For some reason I cant get the code to align automatically.
I wrote this code, based on Syntax, the code is not wrong but I cant get Python to create the Secondary_Key and based on my understanding its because the .assign
doesnt align.
So can someone help with understand why this is happening and how to get this resolved.
The code I wrote this this.
Final_df_With_Key = (Final_df
.assign(Primary_Key = lambda df : df["Item-Color"] + "-" + df["DC"] +
"-" + df["Subsidiary"] + "-" + df["Year"].astype(str) + "-" + df["Month"].astype(str) + "-" + df["B2B"]).assign(Secondary_Key = lambda df : df["Item-Color"] + "-" + df["DC"])
.loc[:,['Primary_Key'] + [col for col in Final_df.columns if col != 'Primary_Key']])
When I press enter before the .assign
for the secondary key, the alignment becomes this.
Final_df_With_Key = (Final_df
.assign(Primary_Key = lambda df : df["Item-Color"] + "-" + df["DC"] +
"-" + df["Subsidiary"] + "-" + df["Year"].astype(str) + "-" + df["Month"].astype(str) + "-" + df["B2B"])
.assign(Secondary_Key = lambda df : df["Item-Color"] + "-" + df["DC"])
.loc[:,['Primary_Key'] + [col for col in Final_df.columns if col != 'Primary_Key']])
I tried pressing tab and backspace but this wont automatically wont align, unless you press spacebar to get it to align.
Please let me know you opinion on this.
Share Improve this question asked Apr 1 at 10:06 Mr PoolMr Pool 3532 silver badges12 bronze badges 1- Why not pull those lamda out into proper methods for much greater readability? – JonSG Commented Apr 1 at 13:09
1 Answer
Reset to default 0Try this: align your .assign and .loc , should help readability. Also, I use https://marketplace.visualstudio/items?itemName=oderwat.indent-rainbow
To help proper indenting IAW the interpreter.
Final_df_With_Key = (Final_df
.assign(Primary_Key = lambda df : df["Item-Color"] + "-" + df["DC"] +
"-" + df["Subsidiary"] + "-" + df["Year"].astype(str) + "-" + df["Month"].astype(str) + "-" + df["B2B"])
.assign(Secondary_Key = lambda df : df["Item-Color"] + "-" + df["DC"])
.loc[:,['Primary_Key'] + [col for col in Final_df.columns if col != 'Primary_Key']])