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
Does that make sense?
2019-02-15T09:52:02.873300
Cammie
pythondev_help_Cammie_2019-02-15T09:52:02.873300
1,550,224,322.8733
9,021
pythondev
help
well, you can iterate over it using `heappop` into a list
2019-02-15T09:53:06.873700
Hiroko
pythondev_help_Hiroko_2019-02-15T09:53:06.873700
1,550,224,386.8737
9,022
pythondev
help
the code for heapq is at <https://github.com/python/cpython/blob/3.6/Lib/heapq.py>
2019-02-15T09:53:35.874100
Hiroko
pythondev_help_Hiroko_2019-02-15T09:53:35.874100
1,550,224,415.8741
9,023
pythondev
help
Perfect. Thank you so much
2019-02-15T09:54:09.874400
Cammie
pythondev_help_Cammie_2019-02-15T09:54:09.874400
1,550,224,449.8744
9,024
pythondev
help
``` val = heapq.heappop(h) while val: print(val) val = heapq.heappop(h) ```
2019-02-15T09:54:17.874600
Cammie
pythondev_help_Cammie_2019-02-15T09:54:17.874600
1,550,224,457.8746
9,025
pythondev
help
<@Hiroko> :taco:
2019-02-15T09:54:25.874800
Cammie
pythondev_help_Cammie_2019-02-15T09:54:25.874800
1,550,224,465.8748
9,026
pythondev
help
glad that helps
2019-02-15T09:55:09.875000
Hiroko
pythondev_help_Hiroko_2019-02-15T09:55:09.875000
1,550,224,509.875
9,027
pythondev
help
also, in the future, sometimes the easiest way to figure a question is look in the source code
2019-02-15T09:55:24.875400
Hiroko
pythondev_help_Hiroko_2019-02-15T09:55:24.875400
1,550,224,524.8754
9,028
pythondev
help
that might raise more questions than it answers, so be warned :slightly_smiling_face:
2019-02-15T09:55:58.875900
Hiroko
pythondev_help_Hiroko_2019-02-15T09:55:58.875900
1,550,224,558.8759
9,029
pythondev
help
Heapq always seemed so unpythonic, any reason why it's not a container object like the rest of collections and builtins?
2019-02-15T10:02:15.879800
Bethany
pythondev_help_Bethany_2019-02-15T10:02:15.879800
1,550,224,935.8798
9,030
pythondev
help
Hi, All I have written this code for creating my network topology, When I try to add the subnet in my topology by writting the command h1 = self.addHost('h1', ip='10.0.0.101/24', mac='00:00:00:00:00:01') No host appears in my topology. Can someone help me with this? thanks in advance
2019-02-15T10:02:27.879900
Elisha
pythondev_help_Elisha_2019-02-15T10:02:27.879900
1,550,224,947.8799
9,031
pythondev
help
from mininet.topo import Topo from <http://mininet.net|mininet.net> import Mininet from <http://mininet.net|mininet.net> import Mininet from mininet.node import CPULimitedHost from mininet.link import TCLink from mininet.util import dumpNodeConnections from mininet.log import setLogLevel class MyfirstTopo(Topo): ...
2019-02-15T10:02:28.880100
Elisha
pythondev_help_Elisha_2019-02-15T10:02:28.880100
1,550,224,948.8801
9,032
pythondev
help
What do you mean? _I’m poor at the Python vocab_
2019-02-15T10:04:02.880200
Cammie
pythondev_help_Cammie_2019-02-15T10:04:02.880200
1,550,225,042.8802
9,033
pythondev
help
you have to import the module, and then work with it
2019-02-15T10:04:54.880600
Hiroko
pythondev_help_Hiroko_2019-02-15T10:04:54.880600
1,550,225,094.8806
9,034
pythondev
help
unlike dicts, lists, sets
2019-02-15T10:04:59.880800
Hiroko
pythondev_help_Hiroko_2019-02-15T10:04:59.880800
1,550,225,099.8808
9,035
pythondev
help
Oh. I follow. I always thought that meant that the library, `heapq` in this example, is in the standard library but not a default import/type. I’m botching the vocab here. but someone please correct me
2019-02-15T10:06:01.881400
Cammie
pythondev_help_Cammie_2019-02-15T10:06:01.881400
1,550,225,161.8814
9,036
pythondev
help
<@Elisha> when you want to include code, it helps to put multiple lines in a code snippet (the + on the left of the input box, if you're not on mobile), or wrap things in single `` if you want to include something inline `like this`
2019-02-15T10:07:29.882700
Ashley
pythondev_help_Ashley_2019-02-15T10:07:29.882700
1,550,225,249.8827
9,037
pythondev
help
you can include your message with your code in the Add message field (not title)
2019-02-15T10:08:21.883600
Ashley
pythondev_help_Ashley_2019-02-15T10:08:21.883600
1,550,225,301.8836
9,038
pythondev
help
and doesn’t look like you’ve implemented the `addHost` method
2019-02-15T10:08:21.883700
Hiroko
pythondev_help_Hiroko_2019-02-15T10:08:21.883700
1,550,225,301.8837
9,039
pythondev
help
None
2019-02-15T10:11:21.885700
Elisha
pythondev_help_Elisha_2019-02-15T10:11:21.885700
1,550,225,481.8857
9,040
pythondev
help
I’m saying you’re not showing the code for `addHost`
2019-02-15T10:12:04.886700
Hiroko
pythondev_help_Hiroko_2019-02-15T10:12:04.886700
1,550,225,524.8867
9,041
pythondev
help
ok just a minute
2019-02-15T10:12:22.887400
Elisha
pythondev_help_Elisha_2019-02-15T10:12:22.887400
1,550,225,542.8874
9,042
pythondev
help
according to your code, that should be a method in the `MyfirstTopo` class
2019-02-15T10:12:25.887600
Hiroko
pythondev_help_Hiroko_2019-02-15T10:12:25.887600
1,550,225,545.8876
9,043
pythondev
help
or from `Topo`
2019-02-15T10:12:34.887900
Hiroko
pythondev_help_Hiroko_2019-02-15T10:12:34.887900
1,550,225,554.8879
9,044
pythondev
help
oh, got it
2019-02-15T10:12:42.888100
Hiroko
pythondev_help_Hiroko_2019-02-15T10:12:42.888100
1,550,225,562.8881
9,045
pythondev
help
`init` is the constructir, so `h1` is local to that method
2019-02-15T10:12:57.888500
Hiroko
pythondev_help_Hiroko_2019-02-15T10:12:57.888500
1,550,225,577.8885
9,046
pythondev
help
it doesn’t exist outside that scope
2019-02-15T10:13:05.888800
Hiroko
pythondev_help_Hiroko_2019-02-15T10:13:05.888800
1,550,225,585.8888
9,047
pythondev
help
so, if you do `self.h1 = ...`, you will be able to access it in other class methods with the `self.h1` variable
2019-02-15T10:13:39.889300
Hiroko
pythondev_help_Hiroko_2019-02-15T10:13:39.889300
1,550,225,619.8893
9,048
pythondev
help
None
2019-02-15T10:15:19.889400
Elisha
pythondev_help_Elisha_2019-02-15T10:15:19.889400
1,550,225,719.8894
9,049
pythondev
help
sorry this is wrong one
2019-02-15T10:15:36.889900
Elisha
pythondev_help_Elisha_2019-02-15T10:15:36.889900
1,550,225,736.8899
9,050
pythondev
help
None
2019-02-15T10:18:13.890500
Elisha
pythondev_help_Elisha_2019-02-15T10:18:13.890500
1,550,225,893.8905
9,051
pythondev
help
Now its fine
2019-02-15T10:18:18.891000
Elisha
pythondev_help_Elisha_2019-02-15T10:18:18.891000
1,550,225,898.891
9,052
pythondev
help
The interface is very different from set, list etc
2019-02-15T10:20:10.892200
Bethany
pythondev_help_Bethany_2019-02-15T10:20:10.892200
1,550,226,010.8922
9,053
pythondev
help
IDK if that's legacy or a design decision
2019-02-15T10:20:24.892700
Bethany
pythondev_help_Bethany_2019-02-15T10:20:24.892700
1,550,226,024.8927
9,054
pythondev
help
Hi I know this isn’t really python specific but I was hoping I could find some help here. Currently, I’m trying to create a method which should evaluate a text based mathematical equation The problem is that all of the equations that I’m using don’t have the same number of arguments So I guess my question is, Can I cre...
2019-02-15T10:22:00.894600
Belen
pythondev_help_Belen_2019-02-15T10:22:00.894600
1,550,226,120.8946
9,055
pythondev
help
you can use `*args, **kwargs`
2019-02-15T10:22:44.894900
Mica
pythondev_help_Mica_2019-02-15T10:22:44.894900
1,550,226,164.8949
9,056
pythondev
help
and pass those to a function, it can then run an arbitrary number of arguements
2019-02-15T10:22:58.895300
Mica
pythondev_help_Mica_2019-02-15T10:22:58.895300
1,550,226,178.8953
9,057
pythondev
help
HELLO PYTHONERDS!! Need help.. any idea how can i host a python bot on heroku ?
2019-02-15T10:24:41.896000
Corrinne
pythondev_help_Corrinne_2019-02-15T10:24:41.896000
1,550,226,281.896
9,058
pythondev
help
think heroku has tutorials for how to host python
2019-02-15T10:25:50.896600
Mica
pythondev_help_Mica_2019-02-15T10:25:50.896600
1,550,226,350.8966
9,059
pythondev
help
okay i follow
2019-02-15T10:27:37.897700
Cammie
pythondev_help_Cammie_2019-02-15T10:27:37.897700
1,550,226,457.8977
9,060
pythondev
help
does anyone here use `behave`? getting a parsing error: `Examples must only appear inside scenario outline at line 14: "Examples: Message Types"` (snippet incoming…)
2019-02-15T10:27:49.898000
Hassan
pythondev_help_Hassan_2019-02-15T10:27:49.898000
1,550,226,469.898
9,061
pythondev
help
None
2019-02-15T10:27:54.898100
Hassan
pythondev_help_Hassan_2019-02-15T10:27:54.898100
1,550,226,474.8981
9,062
pythondev
help
You can't use `Examples:` with `Scenario:`, you need to specify `Scenario Outline:`
2019-02-15T10:29:42.898600
Mose
pythondev_help_Mose_2019-02-15T10:29:42.898600
1,550,226,582.8986
9,063
pythondev
help
Thanks
2019-02-15T10:30:44.898800
Belen
pythondev_help_Belen_2019-02-15T10:30:44.898800
1,550,226,644.8988
9,064
pythondev
help
<@Mose> have you ever used it with pycharm?
2019-02-15T10:42:50.899600
Hassan
pythondev_help_Hassan_2019-02-15T10:42:50.899600
1,550,227,370.8996
9,065
pythondev
help
now I’m using `Scenario Outline`, pycharm is complaining that steps don’t exist (even though they run just fine)
2019-02-15T10:43:27.899800
Hassan
pythondev_help_Hassan_2019-02-15T10:43:27.899800
1,550,227,407.8998
9,066
pythondev
help
<@Mose> :taco: for the info :slightly_smiling_face:
2019-02-15T10:43:49.900200
Hassan
pythondev_help_Hassan_2019-02-15T10:43:49.900200
1,550,227,429.9002
9,067
pythondev
help
not directly, I've only use behave within Eclipse
2019-02-15T10:44:06.900500
Mose
pythondev_help_Mose_2019-02-15T10:44:06.900500
1,550,227,446.9005
9,068
pythondev
help
ah ok, thanks anyway
2019-02-15T10:44:33.900800
Hassan
pythondev_help_Hassan_2019-02-15T10:44:33.900800
1,550,227,473.9008
9,069
pythondev
help
trying this <https://github.com/quamotion/python> ``` import quamotion driver = quamotion.device('ec5e1d52515b015b8f901ef45d6ffa79160770d0b91bb7eb9dc473a13523945a') driver.implicitly_wait(60000) driver.home_screen() driver.find_element_by_link_text('Safari').click() driver.find_element_by_name('URL').click() ``` but ...
2019-02-15T12:51:14.902400
Gianna
pythondev_help_Gianna_2019-02-15T12:51:14.902400
1,550,235,074.9024
9,070
pythondev
help
how to fixed it
2019-02-15T12:51:46.902800
Gianna
pythondev_help_Gianna_2019-02-15T12:51:46.902800
1,550,235,106.9028
9,071
pythondev
help
Have you pip installed it?
2019-02-15T12:58:07.903200
Mica
pythondev_help_Mica_2019-02-15T12:58:07.903200
1,550,235,487.9032
9,072
pythondev
help
<@Mica> yes i did
2019-02-15T13:03:46.903600
Gianna
pythondev_help_Gianna_2019-02-15T13:03:46.903600
1,550,235,826.9036
9,073
pythondev
help
pip install selenium pip install quamotion
2019-02-15T13:03:54.903800
Gianna
pythondev_help_Gianna_2019-02-15T13:03:54.903800
1,550,235,834.9038
9,074
pythondev
help
Did you install it globally or into a vent?
2019-02-15T13:04:30.904400
Mica
pythondev_help_Mica_2019-02-15T13:04:30.904400
1,550,235,870.9044
9,075
pythondev
help
^
2019-02-15T13:04:33.904800
Claudine
pythondev_help_Claudine_2019-02-15T13:04:33.904800
1,550,235,873.9048
9,076
pythondev
help
Venv*
2019-02-15T13:04:33.904900
Mica
pythondev_help_Mica_2019-02-15T13:04:33.904900
1,550,235,873.9049
9,077
pythondev
help
perhaps your pip is pip2 and your python is python3
2019-02-15T13:04:51.905300
Claudine
pythondev_help_Claudine_2019-02-15T13:04:51.905300
1,550,235,891.9053
9,078
pythondev
help
i've done that 100 times
2019-02-15T13:04:58.905500
Claudine
pythondev_help_Claudine_2019-02-15T13:04:58.905500
1,550,235,898.9055
9,079
pythondev
help
hello, I have a sum function as follows: ``` def sum_many_lists(*lists) -&gt; List[Number]: return [sum(x) for x in zip(*lists)] ``` it works when I pass in multiple lists inline: ``` sum_many_lists([1,2], [3,4]) &gt; [4, 6] ``` I'm trying to pass in a list of lists using list unpacking, like so: ``` lists = [[1,2]...
2019-02-15T13:56:17.909800
Deangelo
pythondev_help_Deangelo_2019-02-15T13:56:17.909800
1,550,238,977.9098
9,080
pythondev
help
<@Deangelo> your code seems to work fine for me: ```&gt;&gt;&gt; def sum_many_lists(*lists): ... return [sum(x) for x in zip(*lists)] ... &gt;&gt;&gt; sum_many_lists([1,2], [3,4]) [4, 6] &gt;&gt;&gt; lists = [[1,2], [3,4]] &gt;&gt;&gt; sum_many_lists(*lists) [4, 6]``` were you running it exactly as you posted her...
2019-02-15T14:01:06.910800
Cherish
pythondev_help_Cherish_2019-02-15T14:01:06.910800
1,550,239,266.9108
9,081
pythondev
help
Ditto
2019-02-15T14:01:57.911000
Sasha
pythondev_help_Sasha_2019-02-15T14:01:57.911000
1,550,239,317.911
9,082
pythondev
help
let me double check
2019-02-15T14:12:30.911600
Deangelo
pythondev_help_Deangelo_2019-02-15T14:12:30.911600
1,550,239,950.9116
9,083
pythondev
help
I simplified it
2019-02-15T14:12:37.911800
Deangelo
pythondev_help_Deangelo_2019-02-15T14:12:37.911800
1,550,239,957.9118
9,084
pythondev
help
my bad, it works fine
2019-02-15T14:21:24.912400
Deangelo
pythondev_help_Deangelo_2019-02-15T14:21:24.912400
1,550,240,484.9124
9,085
pythondev
help
<@Cherish> <@Sasha> thanks for the extra pair of eyes
2019-02-15T14:22:17.913100
Deangelo
pythondev_help_Deangelo_2019-02-15T14:22:17.913100
1,550,240,537.9131
9,086
pythondev
help
Whats the best way to check if a list in python has an index?
2019-02-15T18:42:59.913900
Sherman
pythondev_help_Sherman_2019-02-15T18:42:59.913900
1,550,256,179.9139
9,087
pythondev
help
Something like: if 2 in [‘cat’,‘mouse’]
2019-02-15T18:43:15.914300
Sherman
pythondev_help_Sherman_2019-02-15T18:43:15.914300
1,550,256,195.9143
9,088
pythondev
help
Compare against `len()`, probably.
2019-02-15T18:44:09.914800
Sasha
pythondev_help_Sasha_2019-02-15T18:44:09.914800
1,550,256,249.9148
9,089
pythondev
help
if index &lt; len(array_or_dict) - 1
2019-02-15T18:47:13.915500
Sherman
pythondev_help_Sherman_2019-02-15T18:47:13.915500
1,550,256,433.9155
9,090
pythondev
help
Something like that?
2019-02-15T18:47:15.915700
Sherman
pythondev_help_Sherman_2019-02-15T18:47:15.915700
1,550,256,435.9157
9,091
pythondev
help
ah, no -1 huh
2019-02-15T18:47:39.915900
Sherman
pythondev_help_Sherman_2019-02-15T18:47:39.915900
1,550,256,459.9159
9,092
pythondev
help
Yep. Could also do a `try` / `except` on `IndexError`, but a length check seems simpler.
2019-02-15T18:51:32.916800
Sasha
pythondev_help_Sasha_2019-02-15T18:51:32.916800
1,550,256,692.9168
9,093
pythondev
help
how can i mark python output in markdown?
2019-02-16T12:12:14.920800
Coleen
pythondev_help_Coleen_2019-02-16T12:12:14.920800
1,550,319,134.9208
9,094
pythondev
help
``` print(var) &gt;&gt;&gt; 5 ```
2019-02-16T12:12:43.921300
Coleen
pythondev_help_Coleen_2019-02-16T12:12:43.921300
1,550,319,163.9213
9,095
pythondev
help
?
2019-02-16T12:12:45.921500
Coleen
pythondev_help_Coleen_2019-02-16T12:12:45.921500
1,550,319,165.9215
9,096
pythondev
help
<@Coleen> Heres a library that someone on my team is using <https://github.com/Python-Markdown/markdown>
2019-02-16T12:15:17.922400
Lydia
pythondev_help_Lydia_2019-02-16T12:15:17.922400
1,550,319,317.9224
9,097
pythondev
help
no, i mean, what is the markdown syntax for it
2019-02-16T12:16:06.922800
Coleen
pythondev_help_Coleen_2019-02-16T12:16:06.922800
1,550,319,366.9228
9,098
pythondev
help
Markdown is fairly extensive. Its like how HTML has multiple different string presentations for headers. Here is a cheat sheet of markdown inputs, that you can pass to a rendering engine in python or otherwise of your choice. <https://www.markdownguide.org/cheat-sheet/> What does your desired output look like?
2019-02-16T12:18:01.924400
Lydia
pythondev_help_Lydia_2019-02-16T12:18:01.924400
1,550,319,481.9244
9,099
pythondev
help
Thanks
2019-02-16T12:20:04.924700
Coleen
pythondev_help_Coleen_2019-02-16T12:20:04.924700
1,550,319,604.9247
9,100
pythondev
help
hey does anyone have experience launching juypter notebooks from the python shell?
2019-02-16T13:12:57.925200
Eleonor
pythondev_help_Eleonor_2019-02-16T13:12:57.925200
1,550,322,777.9252
9,101
pythondev
help
don’t you mean ipython?
2019-02-16T13:22:25.925700
Hiroko
pythondev_help_Hiroko_2019-02-16T13:22:25.925700
1,550,323,345.9257
9,102
pythondev
help
yes
2019-02-16T13:31:25.925900
Eleonor
pythondev_help_Eleonor_2019-02-16T13:31:25.925900
1,550,323,885.9259
9,103
pythondev
help
I'm pretty sure I'm going about this in the wrong way but I'd like to launch a notebook when some code runs in my django app and have all the modules loaded as well as have access to the variables
2019-02-16T13:32:27.927100
Eleonor
pythondev_help_Eleonor_2019-02-16T13:32:27.927100
1,550,323,947.9271
9,104
pythondev
help
what exactly are you trying to do?
2019-02-16T13:42:39.927400
Hiroko
pythondev_help_Hiroko_2019-02-16T13:42:39.927400
1,550,324,559.9274
9,105
pythondev
help
hi. trying to install / ludwig into colab. everything seems to be in place, but i cant seem to import ludwig. <https://github.com/paulgureghian/Ludwig_Models/blob/master/Medetec_Classifier.ipynb>
2019-02-16T15:04:36.928900
Clayton
pythondev_help_Clayton_2019-02-16T15:04:36.928900
1,550,329,476.9289
9,106
pythondev
help
Quick question.. I have an html table with some items inside a cell being separate by ‘&lt;br/ &gt;’ tags.. if I use pandas read_html to convert it to a dataframe.. is there a way to replace the br’s with something else? As is I get all the data, but some cells are allstucktogether.
2019-02-16T19:42:48.930200
Chiquita
pythondev_help_Chiquita_2019-02-16T19:42:48.930200
1,550,346,168.9302
9,107
pythondev
help
hopefully cross posting is not frowned on.. as I posted this to <#C0JB9ATQV|data_science> as well! LMK!
2019-02-16T19:43:19.930900
Chiquita
pythondev_help_Chiquita_2019-02-16T19:43:19.930900
1,550,346,199.9309
9,108
pythondev
help
Hi All, While perusing content from a few different Python courses, I've noticed two distinct patterns in code to deal with default values being assigned to attributes in a class definitions. (refer to the snippet provided) In the first case, class definition Object_One, a method variable is assigned None. This value ...
2019-02-16T22:12:04.936700
Corey
pythondev_help_Corey_2019-02-16T22:12:04.936700
1,550,355,124.9367
9,109
pythondev
help
# Python 3.6 class Object_One: def __init__(self, **kwargs): self._attribute = kwargs['parameter'] if 'parameter' in kwargs else 'default' def object_one_method(self, method_variable = None): if method_variable: self._attribute = method_variable return self._attribute ...
2019-02-16T22:12:57.936800
Corey
pythondev_help_Corey_2019-02-16T22:12:57.936800
1,550,355,177.9368
9,110
pythondev
help
Disclaimer: I'm still a noob with Python so I hope my re-working/blending of the examples observed and terminology used are reasonable representations of the matter. Also, to ensure that I see any responses on this thread, please include the @Jim assignment within your comments.
2019-02-16T22:13:13.937000
Corey
pythondev_help_Corey_2019-02-16T22:13:13.937000
1,550,355,193.937
9,111
pythondev
help
I'm wondering if you can compile OSX binaries in Linux with pyinstaller? I've managed to package a Windows binary in Linux using wine in docker. I know the official docs say you can't but I was just wondering if anyone had any undocumented way?
2019-02-17T04:52:07.941300
Sherley
pythondev_help_Sherley_2019-02-17T04:52:07.941300
1,550,379,127.9413
9,112
pythondev
help
<@Corey> are you trying to understand getters and setters in python? your first example seems to be an adaptation of that and combines set with get, which to me is definitely not the way to go. Second example is more consistent with a getter, though would suggest you use the `@property` annotation for this if its jus...
2019-02-17T08:01:27.946100
Hiroko
pythondev_help_Hiroko_2019-02-17T08:01:27.946100
1,550,390,487.9461
9,113
pythondev
help
<@Sherley> I would be extremely surprised if you could. To be honest, I’ve not seen much advanced discussions of pyinstaller here, so you might have more success asking on the project’s github issue board or on stackoverflow.
2019-02-17T08:03:25.947300
Hiroko
pythondev_help_Hiroko_2019-02-17T08:03:25.947300
1,550,390,605.9473
9,114
pythondev
help
<https://stackoverflow.com/questions/8622086/python-application-builder-packager/8622193#8622193> seems to be equivalent to what you found, but in short of having a hackintosh virtual machine, I doubt you can
2019-02-17T08:04:06.948200
Hiroko
pythondev_help_Hiroko_2019-02-17T08:04:06.948200
1,550,390,646.9482
9,115
pythondev
help
Thanks <@Hiroko>
2019-02-17T08:05:09.948700
Sherley
pythondev_help_Sherley_2019-02-17T08:05:09.948700
1,550,390,709.9487
9,116
pythondev
help
my version is ```python -V Python 2.7```
2019-02-17T10:46:33.949400
Gianna
pythondev_help_Gianna_2019-02-17T10:46:33.949400
1,550,400,393.9494
9,117
pythondev
help
but i need it work with Anaconda
2019-02-17T10:46:52.949700
Gianna
pythondev_help_Gianna_2019-02-17T10:46:52.949700
1,550,400,412.9497
9,118
pythondev
help
how i can do it
2019-02-17T10:47:00.950000
Gianna
pythondev_help_Gianna_2019-02-17T10:47:00.950000
1,550,400,420.95
9,119
pythondev
help
you download the anaconda distribution
2019-02-17T10:48:50.950300
Hiroko
pythondev_help_Hiroko_2019-02-17T10:48:50.950300
1,550,400,530.9503
9,120