search
HomeBackend DevelopmentPython TutorialCommon mistakes in Python and Linux systems

I have been working in the operation and maintenance industry for nearly ten years. I first came into contact with Linux when I was a sophomore in college. At that time, I only pursued ease of understanding, so I chose Ubuntu as the object of study and use. It is simple and easy to use. , easy to operate, and has a gorgeous interface. It is very good for novices who want to get into Linux. Later, due to my limited personal knowledge, I was unable to play with various Linux configurations, various plug-ins and missing software. In addition, I did not persevere. After using it for a period of time, I felt that there were many bugs, no games, and it was inconvenient to write documents in office. Many software I need to learn now, and my final wish to use my college time to learn Linux died prematurely.
Later, I came into contact with the Python language. The Python language made me feel like I couldn’t put it down. First, because it is very simple and easy to learn; second, because it is a universal language that can be used everywhere. : Server automation operation and maintenance, big data analysis, big data mining, web development, game server back-end development, etc. Even hardware development can be involved. Raspberry Pi is loved by many foreign makers. hardware development platform, which uses Python as the development language. It can develop the most efficient functions in the shortest time, which is beyond the reach of many languages. Python language is pre-installed in almost all Linux distributions, but it is usually version 2.7. In the latest Ubuntu16.04 , version 3.5 has been pre-installed. In the Tiobe programming language rankings in June this year, Python ranked 4th, second only to Java, C, and C++, but it ranked 5th in August. In any case, this is enough to illustrate the popularity of this language.
Python和Linux系统容易犯的错误
Getting back to the subject, in order to have a deeper understanding of the Python language, I want to put the learning platform on Linux (because there is always an unfinished dream of pretending to be a geek in my heart, yes, it is a bit hypocritical) , made a lot of comparisons among many Linux distributions, and finally chose Centos as the learning platform. This is mainly due to two aspects. On the one hand, it is compiled from the source code released by Red Hat Enterprise Linux in accordance with the open source code regulations. Since it comes from the same source code, some servers that require high stability use CentOS. Replaces the commercial version of Red Hat Enterprise Linux. On the other hand, due to the first point, the free and stable features have prompted most domestic server operating systems to use Centos. This also forms a virtuous cycle: the greater the usage of Centos, the more difficult and confusing technical support information the technical community has. Of course, for large companies that are not short of money, or that are pursuing higher stability and better technical support, it is more appropriate to choose Red Hat Enterprise System RHEL.
At that time, I searched a lot of learning materials on the Internet, screened a lot of materials and questions and answers, and collected a lot of videos, documents, e-books, etc. for learning Linux (yes, this person is a data collection maniac). In the process, I gained a lot of knowledge on how to learn Linux, but these did not allow me to learn Linux. In the end, I learned a painful lesson. I deleted all the videos and documents and finally chose to read "This is how you should learn Linux". Moreover, this book has its own website and online learning is completely free. It is also very convenient to go there and open the web page to learn. In order to avoid I won't post the URL because it's suspected of being an advertisement. You can just search the title of the book on Baidu. This book is very suitable for introductory learners of technology. The first part is the basics, the middle part is some service configuration and management, and the second part is mainly about some relatively new technologies in recent years, such as Openstack, virtualization services, etc. The style of this book is only useful, covering various technologies for Linux server operation and maintenance. Compared with the previous book, it is much more concise. If you don’t have a lot of time, or you are a working person, it is recommended to start with this book so that you can “get to the point” and get started quickly. In addition, this book mainly uses RHEL as the teaching version. As mentioned before, its relationship with Centos can be almost shared in terms of technology and software, so you don't have to worry about learning the technology and not using it at all.
Here are some suggestions for new Linux learners: I don’t recommend watching videos to learn, because watching videos to learn is too time-consuming. It takes nearly an hour to talk about a small technical point, and you have to do it yourself after watching it. Bar? Therefore, I think reading is still the best way to learn technology. Firstly, it saves time; secondly, when reading a book, you will have more of your own thinking. If you watch a video, your thinking will completely follow the video. Without your own thinking, it will be quite What you learn does not make a deep impression on you, and it is easy to forget it after a short time.
After completing the basic introduction, I suggest you consider the direction in which you want to develop, and then choose the technology to learn based on the direction. I have mentioned many directions before. For data analysis, you need to study the two libraries NumPy and Pandas. If it is for the Web, you can choose a framework to study hard, or try to build your own blog. I recommend Flask or Django, because the job requirements can also be seen on the recruitment website, which basically require relevant experience in these two major frameworks. My own direction is data analysis, and I am still learning. I hope that all my brothers and sisters who are interested in the IT industry will find a technology that they love.

The above is the detailed content of Common mistakes in Python and Linux systems. 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
How to Use Python to Find the Zipf Distribution of a Text FileHow to Use Python to Find the Zipf Distribution of a Text FileMar 05, 2025 am 09:58 AM

This tutorial demonstrates how to use Python to process the statistical concept of Zipf's law and demonstrates the efficiency of Python's reading and sorting large text files when processing the law. You may be wondering what the term Zipf distribution means. To understand this term, we first need to define Zipf's law. Don't worry, I'll try to simplify the instructions. Zipf's Law Zipf's law simply means: in a large natural language corpus, the most frequently occurring words appear about twice as frequently as the second frequent words, three times as the third frequent words, four times as the fourth frequent words, and so on. Let's look at an example. If you look at the Brown corpus in American English, you will notice that the most frequent word is "th

How Do I Use Beautiful Soup to Parse HTML?How Do I Use Beautiful Soup to Parse HTML?Mar 10, 2025 pm 06:54 PM

This article explains how to use Beautiful Soup, a Python library, to parse HTML. It details common methods like find(), find_all(), select(), and get_text() for data extraction, handling of diverse HTML structures and errors, and alternatives (Sel

How to Perform Deep Learning with TensorFlow or PyTorch?How to Perform Deep Learning with TensorFlow or PyTorch?Mar 10, 2025 pm 06:52 PM

This article compares TensorFlow and PyTorch for deep learning. It details the steps involved: data preparation, model building, training, evaluation, and deployment. Key differences between the frameworks, particularly regarding computational grap

Serialization and Deserialization of Python Objects: Part 1Serialization and Deserialization of Python Objects: Part 1Mar 08, 2025 am 09:39 AM

Serialization and deserialization of Python objects are key aspects of any non-trivial program. If you save something to a Python file, you do object serialization and deserialization if you read the configuration file, or if you respond to an HTTP request. In a sense, serialization and deserialization are the most boring things in the world. Who cares about all these formats and protocols? You want to persist or stream some Python objects and retrieve them in full at a later time. This is a great way to see the world on a conceptual level. However, on a practical level, the serialization scheme, format or protocol you choose may determine the speed, security, freedom of maintenance status, and other aspects of the program

Mathematical Modules in Python: StatisticsMathematical Modules in Python: StatisticsMar 09, 2025 am 11:40 AM

Python's statistics module provides powerful data statistical analysis capabilities to help us quickly understand the overall characteristics of data, such as biostatistics and business analysis. Instead of looking at data points one by one, just look at statistics such as mean or variance to discover trends and features in the original data that may be ignored, and compare large datasets more easily and effectively. This tutorial will explain how to calculate the mean and measure the degree of dispersion of the dataset. Unless otherwise stated, all functions in this module support the calculation of the mean() function instead of simply summing the average. Floating point numbers can also be used. import random import statistics from fracti

Professional Error Handling With PythonProfessional Error Handling With PythonMar 04, 2025 am 10:58 AM

In this tutorial you'll learn how to handle error conditions in Python from a whole system point of view. Error handling is a critical aspect of design, and it crosses from the lowest levels (sometimes the hardware) all the way to the end users. If y

What are some popular Python libraries and their uses?What are some popular Python libraries and their uses?Mar 21, 2025 pm 06:46 PM

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

Scraping Webpages in Python With Beautiful Soup: Search and DOM ModificationScraping Webpages in Python With Beautiful Soup: Search and DOM ModificationMar 08, 2025 am 10:36 AM

This tutorial builds upon the previous introduction to Beautiful Soup, focusing on DOM manipulation beyond simple tree navigation. We'll explore efficient search methods and techniques for modifying HTML structure. One common DOM search method is ex

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version