Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,149,852 members, 7,806,409 topics. Date: Tuesday, 23 April 2024 at 04:00 PM

Php Vs Python - Programming (2) - Nairaland

Nairaland Forum / Science/Technology / Programming / Php Vs Python (6776 Views)

PHP Vs. Nodejs: The Battle Of Top-techs / Go Vs. Python, Which Is Better For AI? / C Vs Python (2) (3) (4)

(1) (2) (Reply) (Go Down)

Re: Php Vs Python by sharrp: 4:17am On Jul 08, 2017
Raypawer:


Java an interpreted language

And you were fast to condemn another's post!
Technically you can call java an interpreted language. Java does not directly compile to machine code. It.compiles to bytecode which based on the java virtual machine can either perform JIT(just intime compilation, i.e converting the byte code to cpu instruction) or interprete the byte code. Although its not like python and all the rest . But techinically sha
Re: Php Vs Python by Hibrahym: 6:31pm On Jul 13, 2017
sharrp:

This is also false. Learning python makes learning c++ a lot easier. Loops are loops, conditions are conditions , only synatic different and static typing. Import statements are like #include "headerfile". The oop concepts are the same. A python programmer will pick up c++ faster than a complete newbie

You know there is C++ and there is the Modern C++.
Your statement might be true for a trivial code, but when TMPL magic starts, in conjunction with operator overloading, bit field manipulation, MACRO MAGICS, new and delete, scoping rules, most vexing parses, multiple inheritance prblms...

Do u really ever studied any sophisticated C++ code?
I don't think so.
Re: Php Vs Python by sharrp: 3:20pm On Jul 15, 2017
Hibrahym:


You know there is C++ and there is the Modern C++.
Your statement might be true for a trivial code, but when TMPL magic starts, in conjunction with operator overloading, bit field manipulation, MACRO MAGICS, new and delete, scoping rules, most vexing parses, multiple inheritance prblms...

Do u really ever studied any sophisticated C++ code?
I don't think so.
Dude , opertor overloading is not specific to c++. You can make certain opertors behave in a particular way depending on arguement in python. Bit field manipulation is also language agonistic. Any language can do that. Variable scopes apply to all too. Macros in c++ is simple since c++ dont have real macros like lisp. Multiple inheritance applies to python too. It is fully OOp. So what r u saying.
Re: Php Vs Python by agwaisrael(m): 10:04am On Jul 17, 2017
Hibrahym:


This line does NOT work for ASM, C++ believe me!

Why would he want to use asm for webdev?
Re: Php Vs Python by Hibrahym: 10:28am On Sep 09, 2017
agwaisrael:


Why would he want to use asm for webdev?
Have u ever Heard of NaCL, Asm.js, Emscripten...?
Re: Php Vs Python by agwaisrael(m): 1:29pm On Sep 09, 2017
Hibrahym:

Have u ever Heard of NaCL, Asm.js, Emscripten...?
Oooooo!
That's so cool!

But still, why would you use assembly language to create a webapp? That involves a lot of research...etc.

Besides, your asm.js runs on the client device.
Re: Php Vs Python by Hibrahym: 8:41pm On Sep 13, 2017
agwaisrael:

Oooooo!
That's so cool!

But still, why would you use assembly language to create a webapp? That involves a lot of research...etc.

Besides, your asm.js runs on the client device.

These guys answered that question (Newest addition/iteration to the list):
- http://webassembly.org/
- https://en.wikipedia.org/wiki/WebAssembly
Re: Php Vs Python by nohuneg: 9:42am On Sep 14, 2017
Our team of highly experienced mobile application designers and developers has the skills to bring your ideas to life, whether you need enterprise mobile applications, a social media application, or perhaps an idea for a killer new game. Our design and development team have the expertise to create a user experience you and your users will love.

Re: Php Vs Python by Topmaike007(m): 9:57pm On Sep 14, 2017
wow i like dis tutorials bro
Re: Php Vs Python by snyperboi(m): 8:02am On Sep 15, 2017
OP if you are comfortable with javascript.. Why not learn Node.js. It's becoming far more popular. It's has a lot of modules both core and third-party modules like express for rapid development. That's what I use to handle my backend.
Re: Php Vs Python by logicalhumour: 9:05am On Aug 03, 2018
olamil34:
to see the true power of python check out my site www.quickfinda.com
I'm glad to see a hosted Python page from someone here on nairaland. Please which host do you use? is it VPS? How much does this cost you (naira) per year please?
Re: Php Vs Python by olamil34(m): 12:21pm On Aug 03, 2018
logicalhumour:

I'm glad to see a hosted Python page from someone here on nairaland. Please which host do you use? is it VPS? How much does this cost you (naira) per year please?

Depends on what you want bro.

Is it a personal project ?
A start up or client work
Re: Php Vs Python by logicalhumour: 12:52pm On Aug 04, 2018
olamil34:


Depends on what you want bro.

Is it a personal project ?
A start up or client work
Its Start up/client work.

Hello
Re: Php Vs Python by Nobody: 4:42pm On Aug 14, 2018
logicalhumour:

Its Start up/client work.

Hello
Use heroku or python anywhere. Then when u want to go a little bigger, check out digital ocean or aws.(Amazon web services)

1 Like

Re: Php Vs Python by collins30: 3:28pm On Aug 16, 2018
If you are looking to start your training in Programming, then you need to be tutored by real web tutors who will guide you well. Enroll with Digital Dreams ICT Academy and get the best training.

Want to know the better part, after training, you get to join our great community of students where you get solution, link up with tech guys and even get job offers.

Visit http://digitaldreamsict.academy/index.php or call: 07064286765 today

Re: Php Vs Python by kudaisi(m): 3:48pm On Sep 16, 2018
Raypawer:


Java an interpreted language

And you were fast to condemn another's post!
.I'm just seeing this post, though my intention was not to condemn, I can't help the urge to reply. Asides the generalization as HLLs, when I said interpreted, I didn't mean it was interpreted the way python's code was. But the fact that the bytecode (which was compiled), can be interpreted at runtime (which is the possible instance I was referring to) or converted to native code ahead of time.
Re: Php Vs Python by Raypawer(m): 5:35pm On Sep 18, 2018
Hmm.. ok i've heard you.

kudaisi:
.I'm just seeing this post, though my intention was not to condemn, I can't help the urge to reply. Asides the generalization as HLLs, when I said interpreted, I didn't mean it was interpreted the way python's code was. But the fact that the bytecode (which was compiled), can be interpreted at runtime (which is the possible instance I was referring to) or converted to native code ahead of time.

(1) (2) (Reply)

Game Programming Tutorials ( Angry Birds, Pvz Etc ) / How Can I Recover My Facebook Account That Has Hacked? / Best Java Textbook

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 24
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.