Python language is not taught in college

akash kushwaha

akash kushwaha

@akash-15Y2hB Oct 26, 2024
Nowadays python is widely demanded language. Python language experts gets salary started from 40000rs then why the collages in India starts and gives the priority to C and C++ language and teaches neligible about python............

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform

  • pratap singh, upendra

    pratap singh, upendra

    @pratap-singh-6xlmve Oct 27, 2015

    The reason is that as a student you need to first get your basics right. For this, you need to write codes for even the basic operations in order to understand the language, its constructs, their usage, limitations etc. and to build an efficient program.

    Python, on the other hand, is a high level language in a sense that there are lot of pre-compiled libraries available to be used without getting into their details. So, if you are just using pre-compiled codes, you will never learn a language properly. Remember, understanding a language and building an application are two different things.

    Therefore, emphasis is laid on implementation of basic operations like sorting, searching, dynamic lists arrays etc. Once you know the basics, you can always change gears to build your own application. This is C/C++ are given a priority over Python and Java.
  • Piyush Dangre

    Piyush Dangre

    @piyush-tW8RhI Nov 10, 2015

    Simply put, it is always beneficial to learn something the hard way first rather than starting in an easy manner. C, C++ or Java are essential for building basics. Python is comparatively easier language to code semantically. Consider the following analogy -
    analogy

    For example a simple program to print "hello world" :
    In Java -
    public class HelloWorld {
    public static void main(String[] args) {
    System.out.println("Hello, World");
    }
    }

    In Python -
    print "Hello, World"

    As is clear, python seems more simpler than Java. That is why primarily Python is not taught as a firsthand language in schools. Hope this helps 😀