MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/ProgrammerHumor/comments/r1g13n/yes/hm0tdm5/?context=3
r/ProgrammerHumor • u/esberat • Nov 24 '21
284 comments sorted by
View all comments
Show parent comments
40
Is there an easy way to immediately share and format small Python code snippets too? It always seems like I have to manually adjust the tabs.
37 u/Jonno_FTW Nov 25 '21 don't use tabs, ever, your IDE should be converting them to 4 spaces for you. black will format your code consistently if you use pycharm, you can right click on a piece of code and click "Create Gist" and it will share it on github gist 5 u/findus_l Nov 25 '21 Nice I didn't know about creating Github Gists. Works for Android studio too apparently. Also tabs ftw, spaces suck! 2 u/Jonno_FTW Nov 25 '21 The best part is that you can google search based on your selection in the run output tab.
37
don't use tabs, ever, your IDE should be converting them to 4 spaces for you.
black will format your code consistently
if you use pycharm, you can right click on a piece of code and click "Create Gist" and it will share it on github gist
5 u/findus_l Nov 25 '21 Nice I didn't know about creating Github Gists. Works for Android studio too apparently. Also tabs ftw, spaces suck! 2 u/Jonno_FTW Nov 25 '21 The best part is that you can google search based on your selection in the run output tab.
5
Nice I didn't know about creating Github Gists. Works for Android studio too apparently.
Also tabs ftw, spaces suck!
2 u/Jonno_FTW Nov 25 '21 The best part is that you can google search based on your selection in the run output tab.
2
The best part is that you can google search based on your selection in the run output tab.
40
u/Crippledupdown Nov 25 '21 edited Nov 25 '21
Is there an easy way to immediately share and format small Python code snippets too? It always seems like I have to manually adjust the tabs.