Python Programmers Hang-out - Programming - Nairaland
Nairaland Forum › Science/Technology › Programming › Python Programmers Hang-out (2751 Views)
| Python Programmers Hang-out by gbolly1151(op): 8:25am On Jul 15, 2019 |
Hello fellow python programmers let hang-out,This thread is created to rub mind with python programmer,make friends with new python programmer,connect and discuss about python language in general drop your challenge and let tackle it together. #Togetherwegrow |
| Re: Python Programmers Hang-out by General0847: 8:35am On Jul 15, 2019 |
gbolly1151:You should drop your email address and twitter handle if you have one. From there we can network, share materials and other stuff related to python programming. |
| Re: Python Programmers Hang-out by gbolly1151(op): 8:41am On Jul 15, 2019 |
General0847:You can connect with me on Twitter @ajayigbolahan1 |
| Re: Python Programmers Hang-out by General0847: 12:19pm On Jul 15, 2019 |
gbolly1151:I will do that. Thanks |
| Re: Python Programmers Hang-out by Baabu320: 9:53am On Jul 16, 2019 |
Am a newbie and i want to learn python any help u guys can render will be appreciated |
| Re: Python Programmers Hang-out by honiboi(m): 11:27am On Jul 16, 2019 |
Don't we have hacking programmers? |
| Re: Python Programmers Hang-out by gbolly1151(op): 12:03pm On Jul 16, 2019 |
Baabu320:To learn python or any other programming languages, you can source for online resources but i recommended starting with tutorialpoint.com |
| Re: Python Programmers Hang-out by gbolly1151(op): 12:05pm On Jul 16, 2019 |
honiboi:Why not in as much it is white hacking |
| Re: Python Programmers Hang-out by johnbendie(m): 8:46am On Jul 21, 2019 |
gbolly1151:Nice, I know a bit of Python. I have done some rough homework with it on and off. What domain are you currently pursuing with Python? |
| Re: Python Programmers Hang-out by gbolly1151(op): 7:43pm On Jul 21, 2019 |
johnbendie:Web development with django |
| Re: Python Programmers Hang-out by iCode2: 12:39pm On Jul 23, 2019 |
gbolly1151:What's the frequency of getting web development job with python/django? Most I see on here are php/laravel. |
| Re: Python Programmers Hang-out by gbolly1151(op): 2:33pm On Jul 23, 2019 |
iCode2:Well,your client dont care what language you use to development a website in as much it does the job require of it,simple to use,scalable and fast |
| Re: Python Programmers Hang-out by dansolution: 12:30am On Jul 27, 2019 |
Hello family,am new into programming and am currently running a class on python and data science.I will appreciate my ogas in the house,to share materials that would aid my learning. my email is danielachowue@gmail.com |
| Re: Python Programmers Hang-out by iCode2: 3:47pm On Jul 30, 2019 |
gbolly1151:They might care when they meet a laravel guy who's willing to do the work for a lesser price considering the fact that hosting is cheaper with laravel framework. Don't you think so? |
| Re: Python Programmers Hang-out by cochtrane(m): 1:11am On Jul 31, 2019 |
Python problem: What ideas do you have for summing a nested list? e.g. sum([2, 9, [2, 1, 13, 2], 8, [2 , 6]]) = 45 Here's my approach with a list comprehension converting it to string and then to integers sum([int(t.strip('[ [] ]')) for t in str(t).split(',')])code won't work if you've got an empty list as a member, but of course this can be slightly adjusted to account for this |
| Re: Python Programmers Hang-out by cochtrane(m): 8:18pm On Jul 31, 2019*. Modified: 1:12am On Aug 01, 2019 |
Problem: Flatten a nested list. for a list like [2,[9,1,1],[2,1,[13,5,4,1],2],8,[2,6]], obtain [2, 9, 1, 1, 2, 1, 13, 5, 4, 1, 2, 8, 2, 6] Going OOP approach: class NestedList: output:
Actually quite cute to employ recursion in solving the problem. |
| Re: Python Programmers Hang-out by cochtrane(m): 1:11am On Aug 01, 2019 |
Problem: count the number of occurrence of a target in a nested list For a list like: [2,[9,1,1],[2,1,[13,5,4,1],2],8,[2,6]] number of occurrence of number 2 = 4 Still OOP: class NestedList: Output: >>> j = NestedList([2,[9,1,1],[2,1,[13,5,4,1],2],8,[2,6]]) |
| Re: Python Programmers Hang-out by cochtrane(m): 4:19am On Aug 02, 2019 |
obtain transpose of a 4x3 matrix: matrix is a tuple of tuple represented as ((0, 1, 2), (3, 4, 5), (6, 7, 8 ), (9, 10, 11)) This should yield a 3x4 matrix represented again as a tuple of tuple: ((0, 3, 6, 9), (1, 4, 7, 10), (2, 5, 8, 11)) At the command line: (venv) C:\Users\...\...\Tests>python |
| Re: Python Programmers Hang-out by cochtrane(m): 6:58am On Aug 03, 2019*. Modified: 7:45am On Aug 03, 2019 |
Problem: if you created a 100 x 100 matrix where each element is an average of 20 random numbers from 0 to 100, will there exist a pattern? Most probably! Even random number generators are biased. Put this to the test in python and we get a clear histogram biased towards the center as more and more datapoints are added. Quite an interesting visualization. # create mean function data shows that by the time we are getting to the 30th list, a clear pattern starts to form biased to the center
|
| Re: Python Programmers Hang-out by swizzy2k: 2:00pm On Aug 06, 2019 |
Please,, it is needed for my final year project. I have already trained the SVM model. Please how will I send information from flask using sublime IDE to my database. I used mysql_connector to connect flask with database. |
| Re: Python Programmers Hang-out by Terz4christ: 8:22pm On Aug 06, 2019 |
Glad to be here |
| Re: Python Programmers Hang-out by ILoveLight: 3:43pm On Aug 07, 2019 |
dansolution:Please where are you running the program cos I'm interested in it too |
| Re: Python Programmers Hang-out by benob(m): 4:54pm On Aug 07, 2019 |
To learn python programming for starters. What's the best laptop to buy Specs and brand Thanks |
| Re: Python Programmers Hang-out by gbolly1151(op): 9:55pm On Nov 05, 2019 |
benob:Core i5 8gb ram |
| Re: Python Programmers Hang-out by gbolly1151(op): 1:18pm On Nov 29, 2019 |
It been a while here,let hook ourselves with a question here On heroku, I understand that dyno is a virtual file system on which django app are served and can go off anytime, when this happen, do i need to set the config var again to start my app when dyno is on again? |
I Need A Whatsapp Group For Beginner Python Programmers • Python Programmers, Pls Help Me Out? • Python Programmers Lets Meet Here!!! • 2 • 3 • 4
How To Build A Doctor Appointment App For Your Clinic • A Beginners Guide To Object-oriented Programming (OOP) In PHP 5+ • How Can I Replicate This In Bootstrap?