Python Basics

Fundamentals of Python language Python syntax features notes Single-Line Comments #As a single line comment symbol, from # beginning to line feed, all the contents behind it are ignored by the Python compiler as the contents of comments multiline comment ''' Note content 1 Note content 2 ''' # perhaps """ Note content 1 Note conten ...

Added by Mobile on Mon, 10 Jan 2022 17:56:22 +0200

java based exception handling (detailed notes)

Blog home page Xiao Wu_ Xiao Wu has an idea_ CSDN blog - notes, java,leetcode domain bloggersWelcome to pay attentiongive the thumbs-upCollection and messageHeaven rewards diligence. Diligence can make up for weakness. Come on with Xiao WuFreshmen, the level is limited, please give advice, thank you very much!     🍊 Here's a lit ...

Added by thunderbox on Mon, 10 Jan 2022 17:52:46 +0200

Spring WebFlux framework - WebFlux configuration

Next blog: https://blog.csdn.net/qq_43605444/article/details/122420890?spm=1001.2014.3001.5502 11. WebFlux configuration The WebFlux Java configuration declares the components required to process requests using annotated controllers or functional endpoints, and provides an API to customize the configuration. This means that you do not need to ...

Added by riginosz on Mon, 10 Jan 2022 17:43:42 +0200

Learning python packages and modules

Here are my own experiments and excerpts from books Note that the explanation given in the third paragraph above may be a little confused, simply put__ doc__ Only the first string can be output (the following "the first line... The second line is an empty line..." refers to a multi line string, which is wrapped in three quotation ...

Added by john_nyc on Mon, 10 Jan 2022 15:53:58 +0200

String class of common APIs (day 13 of learning Java)

catalogue I Overview of String class II Immutability of String class III The difference between the two methods of creating string objects 4, Introduction to common string methods 1. = = comparison operator 2. equals method 3. equalsIgnoreCase method 4, concat(); Splice the two strings to get a new string 5,★length(); Get th ...

Added by proxydude on Mon, 10 Jan 2022 14:30:51 +0200

Kotlin + buildSrc: better manage Gadle dependencies!

In order to make full use of the advantages of Android Plugin for Gradle 3.0 +, it is becoming more and more common to split Android projects into multiple modules. However, with the increase of the number of modules, we will soon encounter the confusion of dependency management.There are three different ways to manage Gradle dependencies:Manua ...

Added by alcedema on Mon, 10 Jan 2022 14:10:39 +0200

Java - Collection - Completion

Programming question homework01 Encapsulate a news class, including title and content attributes, provide get and set methods, override toString method, and print only title when printing object; Only one constructor with parameters is provided. When instantiating an object, only the title is initialized; And instantiate two objects; New ...

Added by sagee on Mon, 10 Jan 2022 12:46:54 +0200

Analysis of Guangzhou real estate market with Python

Hello, I'm Charlie. I haven't been more polite for a while. I apologize to my friends who pay attention to me. This time, I want to use Python to analyze the data for Guangzhou in combination with the real estate business, in order to provide you with some analysis ideas. Why analyze the real estate market? The real estate industry has distinct ...

Added by venom999 on Mon, 10 Jan 2022 10:02:13 +0200

Spring Bean creation process

● study the spring bean creation process through annotation. The entry is the AnnotationConfigApplicationContext class. ApplicationContext applicationContext = new AnnotationConfigApplicationContext(MyConfig.class); ● look at the three steps performed in this construction method: ○ call this() method: ■ instantiate the ioc container DefaultLis ...

Added by munuindra on Mon, 10 Jan 2022 07:33:00 +0200

The method of converting string to byte, hexadecimal number to decimal and exporting data to excel format in C + +

In a recent experiment, I need to collect sensor data. My method is to save the data to TXT file through serial port assistant, and then write a processing program for corresponding data processing operations. There are two main problems: string to byte type and hexadecimal to decimal. After the problem is solved through query, make a record he ...

Added by chowwiie on Mon, 10 Jan 2022 06:48:54 +0200