workspace
stringclasses
1 value
channel
stringclasses
1 value
sentences
stringlengths
1
3.93k
ts
stringlengths
26
26
user
stringlengths
2
11
sentence_id
stringlengths
44
53
timestamp
float64
1.5B
1.56B
__index_level_0__
int64
0
106k
pythondev
help
<@Shavonda> works PERFECTLY thanks! Now I need to make sure I understand it. Ive been coding off and on for 20 years and regex has always made my head hurt
2017-12-05T15:51:46.000681
Season
pythondev_help_Season_2017-12-05T15:51:46.000681
1,512,489,106.000681
102,303
pythondev
help
yeah, I wrote a decent bit of perl for like 4 years, but there's a reason people sometimes call regexes a "write only language"
2017-12-05T15:52:18.000104
Sirena
pythondev_help_Sirena_2017-12-05T15:52:18.000104
1,512,489,138.000104
102,304
pythondev
help
if you write some guru stuff and don't come back to it for 6 months, you might have no idea what you did
2017-12-05T15:52:42.000072
Sirena
pythondev_help_Sirena_2017-12-05T15:52:42.000072
1,512,489,162.000072
102,305
pythondev
help
I don’t use reg much so whenever I looks at it my eyes are like wtf am I looking at. I’ll go watch a lynda video or something sometime soon
2017-12-05T15:54:53.000150
Season
pythondev_help_Season_2017-12-05T15:54:53.000150
1,512,489,293.00015
102,306
pythondev
help
yah, I sorta recommend against it. I don't know where your input comes from or anything, but as a cron job you might just consider transmitting diffs around and apply them using `patch`
2017-12-05T16:05:42.000765
Sirena
pythondev_help_Sirena_2017-12-05T16:05:42.000765
1,512,489,942.000765
102,307
pythondev
help
it's a pretty well established and understood format with tools built around it
2017-12-05T16:06:03.000445
Sirena
pythondev_help_Sirena_2017-12-05T16:06:03.000445
1,512,489,963.000445
102,308
pythondev
help
in your case, your format is pretty straightforward, and hosts files already have a format that generally will avoid any weird regex problems, so it probably doesn't matter
2017-12-05T16:07:11.000747
Sirena
pythondev_help_Sirena_2017-12-05T16:07:11.000747
1,512,490,031.000747
102,309
pythondev
help
Anyone have an example (for the front end mainly) of a way to organize a bunch of different reports? I want to make them easier to find, but I am not sure what I should use for it
2017-12-05T16:12:57.000174
Vita
pythondev_help_Vita_2017-12-05T16:12:57.000174
1,512,490,377.000174
102,310
pythondev
help
Also, I am not opposed to solutions that need backend work, but the primary goal is to make it easy for end users to use
2017-12-05T16:13:51.000429
Vita
pythondev_help_Vita_2017-12-05T16:13:51.000429
1,512,490,431.000429
102,311
pythondev
help
did you get this resolved?
2017-12-05T16:39:14.000451
Laine
pythondev_help_Laine_2017-12-05T16:39:14.000451
1,512,491,954.000451
102,312
pythondev
help
At work I have to add --trusted-host=<http://pypi.python.org|pypi.python.org> to every PIP command to get it to work. It seems to try to insert my companies SSL certificate into the mix.
2017-12-05T16:40:18.000502
Laine
pythondev_help_Laine_2017-12-05T16:40:18.000502
1,512,492,018.000502
102,313
pythondev
help
I literally just figured this out so I thought I'd pass it along <@Myong>
2017-12-05T16:40:36.000088
Laine
pythondev_help_Laine_2017-12-05T16:40:36.000088
1,512,492,036.000088
102,314
pythondev
help
Yeah, I've been using that work around, but it's just not the best option simply because it leaves room for a man in the middle attack
2017-12-05T16:41:39.000092
Myong
pythondev_help_Myong_2017-12-05T16:41:39.000092
1,512,492,099.000092
102,315
pythondev
help
now I don't think that will happen but it's always possible
2017-12-05T16:41:49.000435
Myong
pythondev_help_Myong_2017-12-05T16:41:49.000435
1,512,492,109.000435
102,316
pythondev
help
And you can follow the link to make it so you dont have to specify it every time you do `pip install ...`
2017-12-05T16:42:49.000062
Myong
pythondev_help_Myong_2017-12-05T16:42:49.000062
1,512,492,169.000062
102,317
pythondev
help
<https://stackoverflow.com/questions/45337029/pip-conf-not-paying-attention-to-trusted-host>
2017-12-05T16:42:51.000217
Myong
pythondev_help_Myong_2017-12-05T16:42:51.000217
1,512,492,171.000217
102,318
pythondev
help
it's for me always a bit difficult to determine when "all" will return a generator and when it will be evaluated
2017-12-05T17:49:15.000182
Jesusa
pythondev_help_Jesusa_2017-12-05T17:49:15.000182
1,512,496,155.000182
102,319
pythondev
help
(to get short circuiting)
2017-12-05T17:49:28.000049
Jesusa
pythondev_help_Jesusa_2017-12-05T17:49:28.000049
1,512,496,168.000049
102,320
pythondev
help
the problem with all being of course that bool(generator) will be True
2017-12-05T17:49:56.000399
Jesusa
pythondev_help_Jesusa_2017-12-05T17:49:56.000399
1,512,496,196.000399
102,321
pythondev
help
I guess I'm just bitten by an empty generator
2017-12-05T17:52:47.000467
Jesusa
pythondev_help_Jesusa_2017-12-05T17:52:47.000467
1,512,496,367.000467
102,322
pythondev
help
Any good tutorials for working with linux servers, activating bash scripts, redirecting output from subprocesses? I'm running into a lot of the same problems and I think it's a knowledge gap that's causing the issues.
2017-12-05T18:27:38.000127
Glinda
pythondev_help_Glinda_2017-12-05T18:27:38.000127
1,512,498,458.000127
102,323
pythondev
help
guys, anyone using python with vscode?
2017-12-05T18:29:50.000084
Ying
pythondev_help_Ying_2017-12-05T18:29:50.000084
1,512,498,590.000084
102,324
pythondev
help
Example of one problem, ssh server, activate bash script which starts an interpreter for prolog console, input commands, supress output and then pipe output to file.
2017-12-05T18:30:31.000369
Glinda
pythondev_help_Glinda_2017-12-05T18:30:31.000369
1,512,498,631.000369
102,325
pythondev
help
```ID="$(curl -X GET $PLATFORM_URL/foo \ -H "x-cookie: token=$TOKEN" \ | jq '.[] | .[] | select(.name=="'$NAME'") | .id')"``` `NAME='bar'` Anyone know how i can fix this parsing error? ```jq: error: syntax error, unexpected $end, expecting QQSTRING_TEXT or QQSTRING_INTERP_START...
2017-12-05T18:33:26.000339
Arlene
pythondev_help_Arlene_2017-12-05T18:33:26.000339
1,512,498,806.000339
102,326
pythondev
help
Do you need to escape the `'`?
2017-12-05T18:36:54.000272
Glinda
pythondev_help_Glinda_2017-12-05T18:36:54.000272
1,512,499,014.000272
102,327
pythondev
help
`| jq '.[] | .[] | select(.name=="${NAME}") | .id')"` tried this as well and no luck
2017-12-05T18:37:21.000273
Arlene
pythondev_help_Arlene_2017-12-05T18:37:21.000273
1,512,499,041.000273
102,328
pythondev
help
Also not sure you are paring all your quotes, (which order they are nested in). you have two sets of each.
2017-12-05T18:37:57.000127
Glinda
pythondev_help_Glinda_2017-12-05T18:37:57.000127
1,512,499,077.000127
102,329
pythondev
help
```ID="$(curl -X GET $PLATFORM_URL/foo \ -H "x-cookie: token=$TOKEN" \ | jq '.[] | .[] | select(.name=="bar") | .id')"```
2017-12-05T18:38:42.000161
Arlene
pythondev_help_Arlene_2017-12-05T18:38:42.000161
1,512,499,122.000161
102,330
pythondev
help
this works
2017-12-05T18:38:46.000057
Arlene
pythondev_help_Arlene_2017-12-05T18:38:46.000057
1,512,499,126.000057
102,331
pythondev
help
I just cant seem to be able use the variable instead of bar
2017-12-05T18:40:26.000194
Arlene
pythondev_help_Arlene_2017-12-05T18:40:26.000194
1,512,499,226.000194
102,332
pythondev
help
jq bombs out
2017-12-05T18:40:29.000452
Arlene
pythondev_help_Arlene_2017-12-05T18:40:29.000452
1,512,499,229.000452
102,333
pythondev
help
I don't know anything about jq, are you trying to parse the string in python for the value `$NAME` and `$TOKEN`? What is the actual string you want ID to look like?
2017-12-05T18:50:48.000001
Glinda
pythondev_help_Glinda_2017-12-05T18:50:48.000001
1,512,499,848.000001
102,334
pythondev
help
<@Glinda> this is in shell, ID will look like this ID=int
2017-12-05T18:51:56.000215
Arlene
pythondev_help_Arlene_2017-12-05T18:51:56.000215
1,512,499,916.000215
102,335
pythondev
help
ID=1234
2017-12-05T18:52:00.000070
Arlene
pythondev_help_Arlene_2017-12-05T18:52:00.000070
1,512,499,920.00007
102,336
pythondev
help
Token is just a token
2017-12-05T18:52:19.000080
Arlene
pythondev_help_Arlene_2017-12-05T18:52:19.000080
1,512,499,939.00008
102,337
pythondev
help
It works when I hardcode the name="bar" part
2017-12-05T18:52:32.000014
Arlene
pythondev_help_Arlene_2017-12-05T18:52:32.000014
1,512,499,952.000014
102,338
pythondev
help
but I seem to be having some string escaping issues i think
2017-12-05T18:52:45.000161
Arlene
pythondev_help_Arlene_2017-12-05T18:52:45.000161
1,512,499,965.000161
102,339
pythondev
help
shell variables dont get parsed in single quotes `'`
2017-12-05T18:52:57.000340
Marcie
pythondev_help_Marcie_2017-12-05T18:52:57.000340
1,512,499,977.00034
102,340
pythondev
help
`select(.name=="$NAME")` this wont parse the variabke $NAME either?
2017-12-05T18:54:15.000297
Arlene
pythondev_help_Arlene_2017-12-05T18:54:15.000297
1,512,500,055.000297
102,341
pythondev
help
this should technically work: ```ID="$(curl -X GET $PLATFORM_URL/foo \ -H "x-cookie: token=$TOKEN" \ | jq \".[] | .[] | select(.name==\"$NAME\") | .id\")"```
2017-12-05T18:54:28.000133
Marcie
pythondev_help_Marcie_2017-12-05T18:54:28.000133
1,512,500,068.000133
102,342
pythondev
help
<@Marcie> trying that
2017-12-05T18:54:43.000331
Arlene
pythondev_help_Arlene_2017-12-05T18:54:43.000331
1,512,500,083.000331
102,343
pythondev
help
i like to simplify my work by splitting my curls and jqs into two separate actions though
2017-12-05T18:55:09.000365
Marcie
pythondev_help_Marcie_2017-12-05T18:55:09.000365
1,512,500,109.000365
102,344
pythondev
help
```q: error: syntax error, unexpected INVALID_CHARACTER (Unix shell quoting issues?) at &lt;top-level&gt;, line 1: .[] | .[] | select(.name==\"$NAME\") | .id jq: 1 compile error```
2017-12-05T18:55:21.000090
Arlene
pythondev_help_Arlene_2017-12-05T18:55:21.000090
1,512,500,121.00009
102,345
pythondev
help
didnt seem as it picked it up
2017-12-05T18:55:39.000351
Arlene
pythondev_help_Arlene_2017-12-05T18:55:39.000351
1,512,500,139.000351
102,346
pythondev
help
ahh the fun of bash
2017-12-05T18:55:45.000221
Marcie
pythondev_help_Marcie_2017-12-05T18:55:45.000221
1,512,500,145.000221
102,347
pythondev
help
i spent like 30 min on that one line lol
2017-12-05T18:55:57.000399
Arlene
pythondev_help_Arlene_2017-12-05T18:55:57.000399
1,512,500,157.000399
102,348
pythondev
help
everything works fine when its hardcoded. :disappointed:
2017-12-05T18:56:31.000020
Arlene
pythondev_help_Arlene_2017-12-05T18:56:31.000020
1,512,500,191.00002
102,349
pythondev
help
Alright, I got a question I'm hoping one of you might be able to point me in a better direction. I'm trying to identify an item based on the name given in an a Description. There are about 25-30 possible items and each possible item has anywhere from 2-20 possible spelling/spacing/wordorder/special characters combinat...
2017-12-05T18:58:39.000163
Staci
pythondev_help_Staci_2017-12-05T18:58:39.000163
1,512,500,319.000163
102,350
pythondev
help
You mean, curl request get response
2017-12-05T18:59:00.000152
Arlene
pythondev_help_Arlene_2017-12-05T18:59:00.000152
1,512,500,340.000152
102,351
pythondev
help
than in other variable do the jq stuff?
2017-12-05T18:59:08.000232
Arlene
pythondev_help_Arlene_2017-12-05T18:59:08.000232
1,512,500,348.000232
102,352
pythondev
help
I'll probably clean it up to where I'm only assigning 2 or 3 attributes per item rather than a separate method for each, but I still need a better way to identify them.
2017-12-05T19:01:33.000072
Staci
pythondev_help_Staci_2017-12-05T19:01:33.000072
1,512,500,493.000072
102,353
pythondev
help
it be nice if .py had switch statement
2017-12-05T19:01:56.000080
Arlene
pythondev_help_Arlene_2017-12-05T19:01:56.000080
1,512,500,516.00008
102,354
pythondev
help
i think it make this easier
2017-12-05T19:02:02.000059
Arlene
pythondev_help_Arlene_2017-12-05T19:02:02.000059
1,512,500,522.000059
102,355
pythondev
help
but maybe you can write your own switch
2017-12-05T19:02:14.000123
Arlene
pythondev_help_Arlene_2017-12-05T19:02:14.000123
1,512,500,534.000123
102,356
pythondev
help
You can make a switch with a dictionary
2017-12-05T19:02:26.000068
Staci
pythondev_help_Staci_2017-12-05T19:02:26.000068
1,512,500,546.000068
102,357
pythondev
help
That's essentially what I had before
2017-12-05T19:02:37.000430
Staci
pythondev_help_Staci_2017-12-05T19:02:37.000430
1,512,500,557.00043
102,358
pythondev
help
<@Arlene> from testing this might do it ```ID="$(curl -X GET $PLATFORM_URL/foo \ -H "x-cookie: token=$TOKEN" \ | jq ".[] | .[] | select(.name==\"$NAME\") | .id")"```
2017-12-05T19:02:45.000273
Marcie
pythondev_help_Marcie_2017-12-05T19:02:45.000273
1,512,500,565.000273
102,359
pythondev
help
as this works: ```NAME=foobar echo "$(cat ./test.json | jq ".[] | select(.name==\"${NAME}\")" )"```
2017-12-05T19:03:17.000202
Marcie
pythondev_help_Marcie_2017-12-05T19:03:17.000202
1,512,500,597.000202
102,360
pythondev
help
I guess I could put all of the descriptions in a table with their appropriate attributes and query the table
2017-12-05T19:03:20.000122
Staci
pythondev_help_Staci_2017-12-05T19:03:20.000122
1,512,500,600.000122
102,361
pythondev
help
<@Marcie> :boom: that works
2017-12-05T19:04:24.000210
Arlene
pythondev_help_Arlene_2017-12-05T19:04:24.000210
1,512,500,664.00021
102,362
pythondev
help
Oh man I am tired today.
2017-12-05T19:04:30.000215
Arlene
pythondev_help_Arlene_2017-12-05T19:04:30.000215
1,512,500,670.000215
102,363
pythondev
help
lol
2017-12-05T19:04:31.000063
Arlene
pythondev_help_Arlene_2017-12-05T19:04:31.000063
1,512,500,671.000063
102,364
pythondev
help
<@Marcie> Thanks for taking the time sir!
2017-12-05T19:04:39.000320
Arlene
pythondev_help_Arlene_2017-12-05T19:04:39.000320
1,512,500,679.00032
102,365
pythondev
help
<@Staci> you could have descriptions and associated calls in a dict
2017-12-05T19:05:07.000135
Marcie
pythondev_help_Marcie_2017-12-05T19:05:07.000135
1,512,500,707.000135
102,366
pythondev
help
something like ```checks = { 'ice_water': ["ice/water shield", "i/w shield 1 sq", "i/w shield 1sq", "i/w", "i/w shield - surface area", "i/w valley", "i/w shield"] } def identify_item(self): for func_name, attributes in checks.items(): if self.desc in attributes: getattr(self, func_name)() ...
2017-12-05T19:07:11.000141
Marcie
pythondev_help_Marcie_2017-12-05T19:07:11.000141
1,512,500,831.000141
102,367
pythondev
help
though i'd probably move away from the whole bunch of methods on self to more of a composition style in general
2017-12-05T19:08:04.000246
Marcie
pythondev_help_Marcie_2017-12-05T19:08:04.000246
1,512,500,884.000246
102,368
pythondev
help
yeah thats my normal flow
2017-12-05T19:09:09.000235
Marcie
pythondev_help_Marcie_2017-12-05T19:09:09.000235
1,512,500,949.000235
102,369
pythondev
help
Yea, that is my plan, I just need a way of identifying the items so I can assign the appropriate attributes
2017-12-05T19:14:48.000099
Staci
pythondev_help_Staci_2017-12-05T19:14:48.000099
1,512,501,288.000099
102,370
pythondev
help
I think I may have talked myself into just creating a table, that way it won't require a code change if/when I need to add items in the future
2017-12-05T19:15:41.000173
Staci
pythondev_help_Staci_2017-12-05T19:15:41.000173
1,512,501,341.000173
102,371
pythondev
help
or descriptions rather
2017-12-05T19:15:50.000039
Staci
pythondev_help_Staci_2017-12-05T19:15:50.000039
1,512,501,350.000039
102,372
pythondev
help
but I appreciate your feedback <@Marcie> I like that pretty well
2017-12-05T19:16:34.000373
Staci
pythondev_help_Staci_2017-12-05T19:16:34.000373
1,512,501,394.000373
102,373
pythondev
help
Hello, so i want to write a script that reads from an excel sheet made by my collegues, and based on that, will send some mails (reading both the mailadress to sent to and the mail contents from the spreadsheet). So with my limited knowledge, i feel i have few ways to go around that, and i want to pick up the least pa...
2017-12-05T20:56:59.000115
Ora
pythondev_help_Ora_2017-12-05T20:56:59.000115
1,512,507,419.000115
102,374
pythondev
help
1. is it easier to use pandas or openpyxl and work directly on the spreadsheet, or convert .xls to .csv and go with that? 2. The actual mailsending thourgh smtplib seems pretty straitghforward, but i would like to use the local account to which my collegue is logged in on thunderbird - i fear it might cause troble (sec...
2017-12-05T20:57:08.000264
Ora
pythondev_help_Ora_2017-12-05T20:57:08.000264
1,512,507,428.000264
102,375
pythondev
help
quick on as ill be stuck on plane for 7hrs to figure this out, but i was hoping someone could point me in the right direction ```class Block: def __init__(self, index, timestamp, data, previoius_hash): self.index = index self.timestamp = timestamp self.data = inventory_transaction() ...
2017-12-06T01:23:39.000046
Amee
pythondev_help_Amee_2017-12-06T01:23:39.000046
1,512,523,419.000046
102,376
pythondev
help
no it wouldn't
2017-12-06T01:25:48.000225
Winnie
pythondev_help_Winnie_2017-12-06T01:25:48.000225
1,512,523,548.000225
102,377
pythondev
help
what are you trying to do?
2017-12-06T01:25:54.000058
Winnie
pythondev_help_Winnie_2017-12-06T01:25:54.000058
1,512,523,554.000058
102,378
pythondev
help
<@Ora> I’ve had really good results writing to csv first (via csv.writer), then using csv.reader to read the csv into Excel via xlwt / xlrd / xlutils. These don’t actually use Excel, but read / write xls 5.0-compatible sheets that you can then use Excel on.
2017-12-06T01:30:28.000005
Danial
pythondev_help_Danial_2017-12-06T01:30:28.000005
1,512,523,828.000005
102,379
pythondev
help
Signal handlers can be used to execute a specific set of code when the program receives a particular signal. I want to know that which signal is received when the system is set to shutdown and also where do I place my signal term handler so that it actually executes on receiving the signal?
2017-12-06T01:46:21.000021
Theo
pythondev_help_Theo_2017-12-06T01:46:21.000021
1,512,524,781.000021
102,380
pythondev
help
<@Theo> which process ?
2017-12-06T01:48:12.000052
Sara
pythondev_help_Sara_2017-12-06T01:48:12.000052
1,512,524,892.000052
102,381
pythondev
help
<@Theo> it has to SIGTERM
2017-12-06T01:53:06.000098
Sara
pythondev_help_Sara_2017-12-06T01:53:06.000098
1,512,525,186.000098
102,382
pythondev
help
I'm trying for the same <@Sara> but the code is not being executed at shutdown.
2017-12-06T01:55:10.000093
Theo
pythondev_help_Theo_2017-12-06T01:55:10.000093
1,512,525,310.000093
102,383
pythondev
help
where are you executing this script ?
2017-12-06T02:21:07.000139
Sara
pythondev_help_Sara_2017-12-06T02:21:07.000139
1,512,526,867.000139
102,384
pythondev
help
<@Theo>
2017-12-06T02:21:16.000030
Sara
pythondev_help_Sara_2017-12-06T02:21:16.000030
1,512,526,876.00003
102,385
pythondev
help
Terminal. My program is actually a Daemon for which I've written an init.d script and the daemon part is working fine. It's job is to record the number of mouse clicks, scrolls and moves and append it inside a file at shutdown.
2017-12-06T02:22:43.000166
Theo
pythondev_help_Theo_2017-12-06T02:22:43.000166
1,512,526,963.000166
102,386
pythondev
help
Any resources to learn machine learning
2017-12-06T02:24:51.000135
Ella
pythondev_help_Ella_2017-12-06T02:24:51.000135
1,512,527,091.000135
102,387
pythondev
help
<@Theo> is it in a docker container?
2017-12-06T02:45:51.000336
Wade
pythondev_help_Wade_2017-12-06T02:45:51.000336
1,512,528,351.000336
102,388
pythondev
help
Not really. I've used .join() to join the three functions that I defined in my program which captures the number of mouse clicks, scrolls and drags via a listener and adds their values inside a dictionary.
2017-12-06T02:51:59.000136
Theo
pythondev_help_Theo_2017-12-06T02:51:59.000136
1,512,528,719.000136
102,389
pythondev
help
<@Theo> what if the user doesn't shut down for a long time. Shouldn't you instead be appending every x seconds?
2017-12-06T02:56:10.000173
Winnie
pythondev_help_Winnie_2017-12-06T02:56:10.000173
1,512,528,970.000173
102,390
pythondev
help
The program is running in background <@Winnie> so there shouldn't be any issues if the user doesn't shut down.
2017-12-06T02:57:42.000302
Theo
pythondev_help_Theo_2017-12-06T02:57:42.000302
1,512,529,062.000302
102,391
pythondev
help
if you continuously store every single mouse movement in ram for a very long period of time, then there will be issues :slightly_smiling_face:
2017-12-06T02:58:46.000072
Winnie
pythondev_help_Winnie_2017-12-06T02:58:46.000072
1,512,529,126.000072
102,392
pythondev
help
That makes sense.
2017-12-06T03:07:31.000231
Theo
pythondev_help_Theo_2017-12-06T03:07:31.000231
1,512,529,651.000231
102,393
pythondev
help
<@Marg> do you see the error message? Do you understand what it says?
2017-12-06T03:17:49.000222
Collette
pythondev_help_Collette_2017-12-06T03:17:49.000222
1,512,530,269.000222
102,394
pythondev
help
if now_time &gt;= time.time("13,18"):
2017-12-06T03:19:09.000056
Theo
pythondev_help_Theo_2017-12-06T03:19:09.000056
1,512,530,349.000056
102,395
pythondev
help
This is the correct statement you're looking for.^^
2017-12-06T03:19:24.000004
Theo
pythondev_help_Theo_2017-12-06T03:19:24.000004
1,512,530,364.000004
102,396
pythondev
help
time() is a package not a function which is defined inside it. A package can never be callable in a statement.
2017-12-06T03:19:57.000026
Theo
pythondev_help_Theo_2017-12-06T03:19:57.000026
1,512,530,397.000026
102,397
pythondev
help
yhee i am calling a object ub sirenwbt
2017-12-06T03:20:30.000229
Marg
pythondev_help_Marg_2017-12-06T03:20:30.000229
1,512,530,430.000229
102,398
pythondev
help
found the problem forgot to the right import string
2017-12-06T03:25:36.000110
Marg
pythondev_help_Marg_2017-12-06T03:25:36.000110
1,512,530,736.00011
102,399
pythondev
help
hi guys. iam glad to be here. coming from the dry lands of js now into pyhton i have a question to round accuracy. please consider this codewars kata, that iam trying to solve. my soution should work, but it doesnt due issues on round, can someone help me here. not with a concrete solution, but you can if you want ;.) ...
2017-12-06T03:42:41.000036
Blaine
pythondev_help_Blaine_2017-12-06T03:42:41.000036
1,512,531,761.000036
102,400
pythondev
help
None
2017-12-06T03:43:59.000170
Ciera
pythondev_help_Ciera_2017-12-06T03:43:59.000170
1,512,531,839.00017
102,401
pythondev
help
<@Blaine> have you tried using the builtin `round` ? as shown above it's possible numpy as a different behavior
2017-12-06T03:46:56.000219
Ciera
pythondev_help_Ciera_2017-12-06T03:46:56.000219
1,512,532,016.000219
102,402