In the programming world, a new language always uses hello world for testing, so today we will use python to test hello world.
>>>print('hello world')hello world
We know that python is a scripting language. The code that outputs Hello World can be run directly on the interactive interface and the results can be given directly. Isn’t it very convenient? Let's take a look at how other languages need to be able to output Hello World!
The following is the programming method of Hello World in java