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
like so: ```/etc/eks/bootstrap.sh %s ${BootstrapArguments}```
2019-03-08T14:06:34.084700
Carlota
pythondev_help_Carlota_2019-03-08T14:06:34.084700
1,552,053,994.0847
12,721
pythondev
help
ah, no
2019-03-08T14:08:28.085300
Carlota
pythondev_help_Carlota_2019-03-08T14:08:28.085300
1,552,054,108.0853
12,722
pythondev
help
that’s wrong
2019-03-08T14:08:30.085500
Carlota
pythondev_help_Carlota_2019-03-08T14:08:30.085500
1,552,054,110.0855
12,723
pythondev
help
```def generate_user_data(eks_cluster_name): certificate_auth = """\ #!/bin/bash set -o xtrace /etc/eks/bootstrap.sh %s ${BootstrapArguments} /opt/aws/bin/cfn-signal --exit-code $? --stack ${AWS::StackName} --resource NodeGroup --region ${AWS::Region} """%(eks_cluster_name) return certificate_auth```
2019-03-08T14:08:37.085800
Carlota
pythondev_help_Carlota_2019-03-08T14:08:37.085800
1,552,054,117.0858
12,724
pythondev
help
that way
2019-03-08T14:08:40.086100
Carlota
pythondev_help_Carlota_2019-03-08T14:08:40.086100
1,552,054,120.0861
12,725
pythondev
help
Yep. The other thing you can do is use `{{ }}` for your literal braces that you don't want substituted for.
2019-03-08T14:08:41.086200
Sasha
pythondev_help_Sasha_2019-03-08T14:08:41.086200
1,552,054,121.0862
12,726
pythondev
help
would that look like something like this: ```/etc/eks/bootstrap.sh {ClusterName} {{${BootstrapArguments}}}```
2019-03-08T14:10:43.086700
Carlota
pythondev_help_Carlota_2019-03-08T14:10:43.086700
1,552,054,243.0867
12,727
pythondev
help
No, it would be like `{ClusterName} ${{BootstrapArguments}}`. The `format()` will convert the double braces back to singles as part of the substitution, but it won't look for a variable for them.
2019-03-08T14:11:56.088000
Sasha
pythondev_help_Sasha_2019-03-08T14:11:56.088000
1,552,054,316.088
12,728
pythondev
help
oh ok, that make sense!
2019-03-08T14:12:26.088200
Carlota
pythondev_help_Carlota_2019-03-08T14:12:26.088200
1,552,054,346.0882
12,729
pythondev
help
Sorry, I should have suggested that approach first, as it's the easiest change to your code.
2019-03-08T14:15:21.088700
Sasha
pythondev_help_Sasha_2019-03-08T14:15:21.088700
1,552,054,521.0887
12,730
pythondev
help
Hi, I posed in the <#C0LN2AD7T|flask> channel but figured this is a more active channel: <https://pythondev.slack.com/archives/C0LN2AD7T/p1552073774001700>
2019-03-08T14:37:58.089100
Shera
pythondev_help_Shera_2019-03-08T14:37:58.089100
1,552,055,878.0891
12,731
pythondev
help
Anybody, who can help me parsing (web scraping) all evetns from this page: <https://alando-palais.de/events>
2019-03-08T15:14:00.089800
Librada
pythondev_help_Librada_2019-03-08T15:14:00.089800
1,552,058,040.0898
12,732
pythondev
help
If you have a question, please just ask it. Please do not ask for topic experts; do not DM or ping random users. We cannot begin to answer a question until we actually get a question. <http://sol.gfxile.net/dontask.html|*Asking Questions*>
2019-03-08T15:20:57.089900
Leana
pythondev_help_Leana_2019-03-08T15:20:57.089900
1,552,058,457.0899
12,733
pythondev
help
My question is, how to get all the events from that page. They are hidden behind (js / php) scripts. That is why, I cannot parse them out of the normal html response
2019-03-08T15:24:10.090900
Librada
pythondev_help_Librada_2019-03-08T15:24:10.090900
1,552,058,650.0909
12,734
pythondev
help
<@Librada> you can probably use Selenium to visit the actual page and parse it. Better to ask in <#C5PHT9EGK|webscraping> though.
2019-03-08T16:06:35.091500
Maricruz
pythondev_help_Maricruz_2019-03-08T16:06:35.091500
1,552,061,195.0915
12,735
pythondev
help
thanks, I'll ask in that channel too.
2019-03-08T16:11:44.091900
Librada
pythondev_help_Librada_2019-03-08T16:11:44.091900
1,552,061,504.0919
12,736
pythondev
help
Good for the whole community, we are working on a project in spite of the little knowledge, it is something basic, for the same we chose to use python which is the language that we manage a bit more all the members and design a web, some recommendations at the time to use django ?? Do you know any IDE that allows us to write code collaboratively or some plugin for sublime text ?? I hope you can help me, thanks
2019-03-08T17:08:12.093200
Melia
pythondev_help_Melia_2019-03-08T17:08:12.093200
1,552,064,892.0932
12,737
pythondev
help
Why an ide and not version control?
2019-03-08T17:10:24.094300
Hiroko
pythondev_help_Hiroko_2019-03-08T17:10:24.094300
1,552,065,024.0943
12,738
pythondev
help
Sounds to me the question should be using version control and not an ide
2019-03-08T17:12:43.097000
Hiroko
pythondev_help_Hiroko_2019-03-08T17:12:43.097000
1,552,065,163.097
12,739
pythondev
help
Hey, Django question. <https://gist.github.com/marovargovcik/73169a23adf2cfb86d041457e13007ed> How can I render serialized data (JSON) from model to regular HTML template? HTML template is then initializing JavaScript component that is working with data from JSON. Right now I am getting `OrderedDict` as an output :disappointed:
2019-03-08T17:12:57.097300
Loris
pythondev_help_Loris_2019-03-08T17:12:57.097300
1,552,065,177.0973
12,740
pythondev
help
<@Loris> is the data coming in via js ajax?
2019-03-08T17:14:19.098800
Hiroko
pythondev_help_Hiroko_2019-03-08T17:14:19.098800
1,552,065,259.0988
12,741
pythondev
help
Nope, I want to output this JSON as string to template. Then in JavaScript `JSON.parse(window.usedToBeJson)`
2019-03-08T17:15:42.100300
Loris
pythondev_help_Loris_2019-03-08T17:15:42.100300
1,552,065,342.1003
12,742
pythondev
help
Maybe I am trying to solve something that may be only cause of my corrupted thinking. I have table library that is taking javascript array of objects e.g. `[ {name: 'John', surname: 'Doe' } ]` and rendering it in table. In Python I used to do `render(request, 'users/list.html, { 'objects': serializers.serialize(User.objects.all()) })` but I was missing URLs and I don't want to generate them in JavaScript. I would like to enhance serialized data with `get_absolute_url` so my serialized object in JavaScript has `user.absolute_url` (string value). I did not find a way how to do that with in built Django serializer `from django.core import serializers` so I plugged in DRF. But with DRF I don't know how to render JSON to regular HTML template.
2019-03-08T17:21:29.106000
Loris
pythondev_help_Loris_2019-03-08T17:21:29.106000
1,552,065,689.106
12,743
pythondev
help
<@Hiroko> what is version control??
2019-03-08T17:25:28.106500
Melia
pythondev_help_Melia_2019-03-08T17:25:28.106500
1,552,065,928.1065
12,744
pythondev
help
<@Melia> git, subversion
2019-03-08T17:25:43.106800
Loris
pythondev_help_Loris_2019-03-08T17:25:43.106800
1,552,065,943.1068
12,745
pythondev
help
<@Loris> <@Hiroko> I'm going to review it, we usually use an IDE since we do not have experience in the subject, nor do we have real experience working on projects, this is the first
2019-03-08T17:27:50.107700
Melia
pythondev_help_Melia_2019-03-08T17:27:50.107700
1,552,066,070.1077
12,746
pythondev
help
Understood
2019-03-08T17:28:19.108100
Hiroko
pythondev_help_Hiroko_2019-03-08T17:28:19.108100
1,552,066,099.1081
12,747
pythondev
help
version control is a very important in software development
2019-03-08T17:28:47.108900
Hiroko
pythondev_help_Hiroko_2019-03-08T17:28:47.108900
1,552,066,127.1089
12,748
pythondev
help
A collaborative ide, with similar user experience ad google docs, etc, can be used but it is fairly limited and is entirely browser based
2019-03-08T17:29:58.110700
Hiroko
pythondev_help_Hiroko_2019-03-08T17:29:58.110700
1,552,066,198.1107
12,749
pythondev
help
There might be some for teaching, but not sure
2019-03-08T17:30:17.111300
Hiroko
pythondev_help_Hiroko_2019-03-08T17:30:17.111300
1,552,066,217.1113
12,750
pythondev
help
how to share the global variables across files??
2019-03-08T22:55:56.112200
Elisha
pythondev_help_Elisha_2019-03-08T22:55:56.112200
1,552,085,756.1122
12,751
pythondev
help
It's generally bad practice to use global variables in that way, but if you have to, you will want to use `import` to pull in either the whole file or just the variable(s) you want.
2019-03-08T22:58:37.113500
Sasha
pythondev_help_Sasha_2019-03-08T22:58:37.113500
1,552,085,917.1135
12,752
pythondev
help
Import the file?? .. i mean i do that in python
2019-03-08T23:20:45.113600
Josef
pythondev_help_Josef_2019-03-08T23:20:45.113600
1,552,087,245.1136
12,753
pythondev
help
even after doing that, variables are not getting replicated
2019-03-08T23:27:02.113800
Elisha
pythondev_help_Elisha_2019-03-08T23:27:02.113800
1,552,087,622.1138
12,754
pythondev
help
Hello everyone. Do you have any idea how better to convert XML to CSV? Please look <https://pastebin.com/W41Ae4QJ> It is one part of all XML document. And I can't understand still 2 things: 1. How to get all last child's `presenter`. But I think I can do it. 2. How this to show in the csv file? What to create headers? What the headers? Task - convert this XML file to CSV file. Thank you very much.
2019-03-09T02:04:19.116800
Jung
pythondev_help_Jung_2019-03-09T02:04:19.116800
1,552,097,059.1168
12,755
pythondev
help
I would be thinking of using two CSV files. One would have the per-event information, and the second would be a list of presenters, each matched up with an event ID.
2019-03-09T02:09:35.117700
Sasha
pythondev_help_Sasha_2019-03-09T02:09:35.117700
1,552,097,375.1177
12,756
pythondev
help
Hello Y'all.. Hope someone can <#C07EFMZ1N|help> with this question: I'm plotting a pandas dataframe, where I created a try / except block to create a PDF file. So, if the IF conditional period_fails is not empty, the ELSE statement runs and create a pdf, no problem with that. if the IF conditional period_fail is empty it raise a ValueError and execute the except ValueError block, great..., but for some reason, still executing the else statement and creating an empty PDF. Does someone knows why is executing both the If and ELSE statement?
2019-03-09T03:23:43.127300
Echo
pythondev_help_Echo_2019-03-09T03:23:43.127300
1,552,101,823.1273
12,757
pythondev
help
Hey guys, just started learning python and the exercise book I'm using to practice is not working in the python terminal. Apparently, its due to the "," and it not being able to read it. Thoughts? or better places online to learn?
2019-03-09T03:34:40.129800
Otelia
pythondev_help_Otelia_2019-03-09T03:34:40.129800
1,552,102,480.1298
12,758
pythondev
help
Please show your terminal output.
2019-03-09T03:35:56.130100
Jung
pythondev_help_Jung_2019-03-09T03:35:56.130100
1,552,102,556.1301
12,759
pythondev
help
None
2019-03-09T03:37:37.130400
Otelia
pythondev_help_Otelia_2019-03-09T03:37:37.130400
1,552,102,657.1304
12,760
pythondev
help
First, you need to save a file. Second - run the file. <https://appdividend.com/2019/01/22/python-sys-argv-tutorial-command-line-arguments-example/>
2019-03-09T03:58:01.130800
Jung
pythondev_help_Jung_2019-03-09T03:58:01.130800
1,552,103,881.1308
12,761
pythondev
help
And a suggestion: switch from legacy Python (2.7) to Python 3. Support for python 2.7 will drop in less than a year
2019-03-09T04:00:36.131100
Yaeko
pythondev_help_Yaeko_2019-03-09T04:00:36.131100
1,552,104,036.1311
12,762
pythondev
help
sorl thumbnails is not working for me.
2019-03-09T05:16:39.131800
Refugio
pythondev_help_Refugio_2019-03-09T05:16:39.131800
1,552,108,599.1318
12,763
pythondev
help
Anyone have any alternatives? Or want to help me figure out what the hell is going on with sorl thumbnail?
2019-03-09T05:16:55.132300
Refugio
pythondev_help_Refugio_2019-03-09T05:16:55.132300
1,552,108,615.1323
12,764
pythondev
help
<#C0LMFRMB5|django>
2019-03-09T05:21:01.132400
Jung
pythondev_help_Jung_2019-03-09T05:21:01.132400
1,552,108,861.1324
12,765
pythondev
help
<@Sasha> :taco:
2019-03-09T07:09:38.132800
Jung
pythondev_help_Jung_2019-03-09T07:09:38.132800
1,552,115,378.1328
12,766
pythondev
help
Can you share some code?
2019-03-09T09:49:46.133300
Cori
pythondev_help_Cori_2019-03-09T09:49:46.133300
1,552,124,986.1333
12,767
pythondev
help
Hey guys, I'm trying to complete this activity in python 3.7 and seemingly the syntax or something is wrong because it won't work in the terminal. help would be appreciated.
2019-03-09T10:03:39.133500
Otelia
pythondev_help_Otelia_2019-03-09T10:03:39.133500
1,552,125,819.1335
12,768
pythondev
help
None
2019-03-09T10:04:10.133800
Otelia
pythondev_help_Otelia_2019-03-09T10:04:10.133800
1,552,125,850.1338
12,769
pythondev
help
Don’t use IDLE
2019-03-09T10:10:03.134600
Nieves
pythondev_help_Nieves_2019-03-09T10:10:03.134600
1,552,126,203.1346
12,770
pythondev
help
Use an IDE
2019-03-09T10:10:06.134900
Nieves
pythondev_help_Nieves_2019-03-09T10:10:06.134900
1,552,126,206.1349
12,771
pythondev
help
Makes life easier
2019-03-09T10:10:11.135200
Nieves
pythondev_help_Nieves_2019-03-09T10:10:11.135200
1,552,126,211.1352
12,772
pythondev
help
<@Otelia> Looks like the samples you're following are written for Python2. Make sure all your print statements are like `print(" ")`
2019-03-09T10:10:40.136200
Marth
pythondev_help_Marth_2019-03-09T10:10:40.136200
1,552,126,240.1362
12,773
pythondev
help
though the x doesn't need the quotes
2019-03-09T10:11:41.137000
Marth
pythondev_help_Marth_2019-03-09T10:11:41.137000
1,552,126,301.137
12,774
pythondev
help
`print(x)` should work since it's a variable
2019-03-09T10:11:56.137600
Marth
pythondev_help_Marth_2019-03-09T10:11:56.137600
1,552,126,316.1376
12,775
pythondev
help
<@Marth> Yeah. The problem itself is in Py2.
2019-03-09T10:12:07.138000
Nieves
pythondev_help_Nieves_2019-03-09T10:12:07.138000
1,552,126,327.138
12,776
pythondev
help
He forgot the spaces
2019-03-09T10:12:18.138200
Nieves
pythondev_help_Nieves_2019-03-09T10:12:18.138200
1,552,126,338.1382
12,777
pythondev
help
That’s why he is getting a syntax error
2019-03-09T10:12:30.138600
Nieves
pythondev_help_Nieves_2019-03-09T10:12:30.138600
1,552,126,350.1386
12,778
pythondev
help
yep. should be fine once he has the `( )`
2019-03-09T10:13:44.139100
Marth
pythondev_help_Marth_2019-03-09T10:13:44.139100
1,552,126,424.1391
12,779
pythondev
help
No. It’s the for loop too.
2019-03-09T10:14:13.139400
Nieves
pythondev_help_Nieves_2019-03-09T10:14:13.139400
1,552,126,453.1394
12,780
pythondev
help
His print statements are fine
2019-03-09T10:14:30.139700
Nieves
pythondev_help_Nieves_2019-03-09T10:14:30.139700
1,552,126,470.1397
12,781
pythondev
help
If you look at his reply
2019-03-09T10:14:35.139900
Nieves
pythondev_help_Nieves_2019-03-09T10:14:35.139900
1,552,126,475.1399
12,782
pythondev
help
I'm also thinking that the input will return a 'str' so I'm not sure he'll be able to use it mathmatically
2019-03-09T10:19:19.140900
Marth
pythondev_help_Marth_2019-03-09T10:19:19.140900
1,552,126,759.1409
12,783
pythondev
help
<@Echo> The PDF is being created/opened in the `with` statement, and then gets closed automatically when that block is exited, leaving behind a blank file. You'll want to put your `empty` check earlier to avoid that.
2019-03-09T10:19:54.141000
Sasha
pythondev_help_Sasha_2019-03-09T10:19:54.141000
1,552,126,794.141
12,784
pythondev
help
Yeah, the `input()` behavior changed between Py2 and Py3 as well.
2019-03-09T10:21:05.141500
Sasha
pythondev_help_Sasha_2019-03-09T10:21:05.141500
1,552,126,865.1415
12,785
pythondev
help
input(int())?
2019-03-09T10:39:07.142100
Nieves
pythondev_help_Nieves_2019-03-09T10:39:07.142100
1,552,127,947.1421
12,786
pythondev
help
I know raw_input doesn’t exist in Py3 so he would have to cast it?
2019-03-09T10:39:26.142700
Nieves
pythondev_help_Nieves_2019-03-09T10:39:26.142700
1,552,127,966.1427
12,787
pythondev
help
`int(input(...))`, yeah.
2019-03-09T10:45:00.143000
Sasha
pythondev_help_Sasha_2019-03-09T10:45:00.143000
1,552,128,300.143
12,788
pythondev
help
Yeah... 5 weeks of Python in a CS class is enough... (hates Python a lot)
2019-03-09T10:46:07.143800
Nieves
pythondev_help_Nieves_2019-03-09T10:46:07.143800
1,552,128,367.1438
12,789
pythondev
help
But of course for most of my smaller projects... Python is the best
2019-03-09T10:46:27.144300
Nieves
pythondev_help_Nieves_2019-03-09T10:46:27.144300
1,552,128,387.1443
12,790
pythondev
help
Thanks man, yeah I'm finding heaps of these books aren't really to date. The exercises are having problems with the latest versions of python
2019-03-09T11:20:25.144600
Otelia
pythondev_help_Otelia_2019-03-09T11:20:25.144600
1,552,130,425.1446
12,791
pythondev
help
oh really? That's annoying, so the activity won't work verbatim off the activity with py 3?
2019-03-09T11:26:54.144800
Otelia
pythondev_help_Otelia_2019-03-09T11:26:54.144800
1,552,130,814.1448
12,792
pythondev
help
Hi! Can someone explain why my solution didn't work for this codewars kata? Complete the function which takes two arguments and returns all numbers which are divisible by given divisor. First argument is an array of numbers and the second is the divisor. Example divisible_by([1, 2, 3, 4, 5, 6], 2) == [2, 4, 6]
2019-03-09T11:46:02.145800
Rosalia
pythondev_help_Rosalia_2019-03-09T11:46:02.145800
1,552,131,962.1458
12,793
pythondev
help
def divisible_by(numbers, divisor): for num in numbers: while(num%divisor==0): return [num] else: return [] return [x for x in numbers if x%divisor == 0]
2019-03-09T11:46:31.146100
Rosalia
pythondev_help_Rosalia_2019-03-09T11:46:31.146100
1,552,131,991.1461
12,794
pythondev
help
My solution is the first one, and the last return is the one that works. Thanks!
2019-03-09T11:47:08.147100
Rosalia
pythondev_help_Rosalia_2019-03-09T11:47:08.147100
1,552,132,028.1471
12,795
pythondev
help
1. You don't need parentheses in `while` 2. You don't need that `while` at all. Use `if` instead (with no parentheses!) 3. `return`, when put in a `for` loop, does not end the loop. It returns from the function instead, so your loop has only one iteration
2019-03-09T11:48:26.148600
Chester
pythondev_help_Chester_2019-03-09T11:48:26.148600
1,552,132,106.1486
12,796
pythondev
help
<@Rosalia> ^
2019-03-09T11:48:41.148900
Chester
pythondev_help_Chester_2019-03-09T11:48:41.148900
1,552,132,121.1489
12,797
pythondev
help
Got it, thanks so much <@Chester>!
2019-03-09T11:49:54.149400
Rosalia
pythondev_help_Rosalia_2019-03-09T11:49:54.149400
1,552,132,194.1494
12,798
pythondev
help
Hii guys ... need some help ... Could anyone tell me how to use static variable in python classes?
2019-03-09T11:57:10.150200
Elisha
pythondev_help_Elisha_2019-03-09T11:57:10.150200
1,552,132,630.1502
12,799
pythondev
help
What does modulus do
2019-03-09T12:02:56.150300
Nieves
pythondev_help_Nieves_2019-03-09T12:02:56.150300
1,552,132,976.1503
12,800
pythondev
help
In your code that is?
2019-03-09T12:03:16.150500
Nieves
pythondev_help_Nieves_2019-03-09T12:03:16.150500
1,552,132,996.1505
12,801
pythondev
help
:confused:
2019-03-09T12:03:53.150900
Nieves
pythondev_help_Nieves_2019-03-09T12:03:53.150900
1,552,133,033.1509
12,802
pythondev
help
I don't understand why if statement is needed instead of while?
2019-03-09T12:04:03.151200
Nieves
pythondev_help_Nieves_2019-03-09T12:04:03.151200
1,552,133,043.1512
12,803
pythondev
help
<@Otelia> Python is weird in general... I am also not the best to ask the question to.
2019-03-09T12:05:48.151300
Nieves
pythondev_help_Nieves_2019-03-09T12:05:48.151300
1,552,133,148.1513
12,804
pythondev
help
<@Nieves> because `while` is used when you need to iterate. That snippet already has iteration code presented by the `for` loop.
2019-03-09T12:07:09.152400
Chester
pythondev_help_Chester_2019-03-09T12:07:09.152400
1,552,133,229.1524
12,805
pythondev
help
Ok. Didn't see the for loop.
2019-03-09T12:07:28.153100
Nieves
pythondev_help_Nieves_2019-03-09T12:07:28.153100
1,552,133,248.1531
12,806
pythondev
help
My apologies
2019-03-09T12:07:30.153400
Nieves
pythondev_help_Nieves_2019-03-09T12:07:30.153400
1,552,133,250.1534
12,807
pythondev
help
If you put a `while` in a `for`, then you have two loops, one inside the other
2019-03-09T12:07:31.153500
Chester
pythondev_help_Chester_2019-03-09T12:07:31.153500
1,552,133,251.1535
12,808
pythondev
help
Well, it is called nesting at that point
2019-03-09T12:07:40.153900
Nieves
pythondev_help_Nieves_2019-03-09T12:07:40.153900
1,552,133,260.1539
12,809
pythondev
help
I think...
2019-03-09T12:07:45.154100
Nieves
pythondev_help_Nieves_2019-03-09T12:07:45.154100
1,552,133,265.1541
12,810
pythondev
help
<@Elisha> static like in java?
2019-03-09T12:07:56.154500
Chester
pythondev_help_Chester_2019-03-09T12:07:56.154500
1,552,133,276.1545
12,811
pythondev
help
for iterates till it reaches the cut off (knows C for lopps, but not really Python's version)?
2019-03-09T12:08:20.155100
Nieves
pythondev_help_Nieves_2019-03-09T12:08:20.155100
1,552,133,300.1551
12,812
pythondev
help
Yeah. Ok. return makes no sense.
2019-03-09T12:08:27.155400
Nieves
pythondev_help_Nieves_2019-03-09T12:08:27.155400
1,552,133,307.1554
12,813
pythondev
help
`for` in python is like `foreach` in other languages
2019-03-09T12:08:54.155700
Chester
pythondev_help_Chester_2019-03-09T12:08:54.155700
1,552,133,334.1557
12,814
pythondev
help
I know that... lol. I just don't really use Python as much as I use the others.
2019-03-09T12:09:55.156200
Nieves
pythondev_help_Nieves_2019-03-09T12:09:55.156200
1,552,133,395.1562
12,815
pythondev
help
Also, isn't Python mainly OOP?
2019-03-09T12:10:08.156700
Nieves
pythondev_help_Nieves_2019-03-09T12:10:08.156700
1,552,133,408.1567
12,816
pythondev
help
I know most modules are OOP.
2019-03-09T12:10:16.157000
Nieves
pythondev_help_Nieves_2019-03-09T12:10:16.157000
1,552,133,416.157
12,817
pythondev
help
It's not _mainly_ OOP. It's multi-paradigm, actually.
2019-03-09T12:14:12.157800
Chester
pythondev_help_Chester_2019-03-09T12:14:12.157800
1,552,133,652.1578
12,818
pythondev
help
You can do a lot of typical FP bells and whistles in python as well
2019-03-09T12:14:44.158400
Chester
pythondev_help_Chester_2019-03-09T12:14:44.158400
1,552,133,684.1584
12,819
pythondev
help
None
2019-03-09T12:16:24.159100
Elisha
pythondev_help_Elisha_2019-03-09T12:16:24.159100
1,552,133,784.1591
12,820