We Tweets about #Python #Programming

Joined April 2018
6 Photos and videos
PythonPost🐍 retweeted
Complete Python 3 Programming Course: (Beginner to Advanced) Course Download Free salewebdesign.com/complete-p…

1
# Functions assigned to variables and stored in data structures in Python: >>> def myfunc(a, b): ... return a b ... >>> funcs = [myfunc] >>> funcs[0] <function myfunc at 0x107012230> >>> funcs[0](2, 3) 5
# Functions returned as values from other functions in Python: >>> def myfunc(a, b): ... return a b ... >>> funcs = [myfunc] >>> funcs[0] <function myfunc at 0x107012230> >>> funcs[0](2, 3) 5
# Functions can be passed as arguments to other functions in Python: >>> def myfunc(a, b): ... return a b ... >>> funcs = [myfunc] >>> funcs[0] <function myfunc at 0x107012230> >>> funcs[0](2, 3) 5
# Functions are first-class citizens in Python: >>> def myfunc(a, b): ... return a b ... >>> funcs = [myfunc] >>> funcs[0] <function myfunc at 0x107012230> >>> funcs[0](2, 3) 5
PythonPost🐍 retweeted
OH: Python 3 is better than D&D 4
12
94
452
We'r starting a #Facebook Group for #Python lovers. We hope you'll join with Us - fb.com/groups/JustPython/

#Python provides an intuitive way to do assignments and swapping in one line. Example - x, y = 10, 20 print(x, y) x, y = y, x print(x, y) Result: 10 20 20 10
1
PythonPost🐍 retweeted
🐍📰 How much faster does the application run when implemented with NumPy instead of pure Python? What about TensorFlow? Check out our in-depth review: realpython.com/numpy-tensorf…

1
55
123
PythonPost🐍 retweeted
A Concrete Introduction to Probability (using Python) nbviewer.jupyter.org/url/nor…
42
112
PythonPost🐍 retweeted
Building a Content-Based Search Engine IV: Earth Mover’s Distance deepideas.net/building-conte…
9
31
#DoYouKnow#Django follows the MVC pattern closely, however it does use its own logic in the implementation. Because the “C” is handled by the framework itself ... Django is often referred to as an MTV framework... bit.ly/2uF02VE

#Python 3.7.0b4, final 3.7 beta, now available for testing bit.ly/2jAmtUN

PythonPost🐍 retweeted
9 more days to help us reach our fundraising goal of $20K! You can win fun prizes for a donation of as low as $20. python.org/psf/donations/201… #idonatedtothepsf
19
20
PythonPost🐍 retweeted
29 Apr 2018
Learn Python Programming pythonspot.com/ #python #datascience please RT pythonspot.com/ via @pythonspot

1
4
#DoYouKnow this is the 1st official logo of #Python🐍
It happens only with #Coders!