Home  >  Article  >  Backend Development  >  Can I learn python by myself?

Can I learn python by myself?

silencement
silencementOriginal
2019-06-19 17:37:145108browse

Can I learn python by myself?

Python is widely used and you can make money part-time. So, is it suitable to learn Python with zero basic knowledge?

It can only be said that it is very suitable, because among the current programming languages, Python has the highest level of abstraction and is closest to natural language. It is very easy to get started. Python can help you better understand programming. matter.

If you do a project and Java requires 100 lines of code, then Python only requires 10 lines of code. This is why Python is so popular.

Java language Hello World code:

public class HelloWorld {
public static void main(String[] args){
System.out.println("Hello World!");
}
}

Python language Hello World code:

print("Hello World!")

Just a Hello World program, you can see the difference, right?

Python is a novice-friendly, powerful, efficient and flexible programming language. After learning it, whether you want to enter the fields of data analysis, artificial intelligence, website development, or want to master the first Any programming language can use Python to open up unlimited possibilities for the future!

The above is the detailed content of Can I learn python by myself?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn