November 2018
— Sorry, I didn't want to say it that way, wasn't my intention, maybe I didnt take the suitable words, It just seemed strange to me that nobody would have made the same mistake
Message permanent page
I'm looking for a module in python to do dashboard, know some, research and find two, bokeh and plotly, do you know about anyone ?
— Dash
— Take a look
— Those are both plotting libs
— If you want to build a dashboard of them, use bowtie
— Or otherwise pyxley or grafanalib
— How to make correct startswith?
— I useif str.startswith('testing'): send('this is test')>>>testingthis is test>>>testingsssthis is testbut i wanna make that respond to 'testing' only How to fix it?
if str.startswith('testing'): send('this is test')>>>testingthis is test>>>testingsssthis is test
— How are you doing it wrong?
— Don't use starswith 🤷🏻♂
starswith
— Use what then?