[PYTHON] Programming language in "Hello World"

Introduction

** Hello world ** is the path for anyone learning programming. This time, we will compare five programming languages ​​with a program to output such ** Hello world **. I chose a language that you probably don't use. ** is determined by ** arbitrary judgment and prejudice.

1.C It's a well-known language.

#include <stdio.h>
int main(void) {
    printf("Hello world\n");
}

2.Python The advantage is that you can write it concisely.

print("Hello world")

3.Ruby It's a language born in Japan.

puts "Hello world"

4.FORTRAN It's famous as the first high-level language. Did you still breathe ...

program hello
  print *, 'Hello world'
end program hello
  1. PHP It is used together with HTML/CSS.
<?php
  echo "Hello world\n";
?>

At the end

that's all. What did you think? After all Ruby was short. That is an advantage, isn't it? You read "PHP` ** echo **" as echo. I did not know that. Since I am a young person, there may be mistakes, so please let me know in the comments at that time.

Recommended Posts

Programming language in "Hello World"
Hello World in GO language
[Programming learning] Logic comparison by language part.1 ("Hello World")
Hello world
Programming to fight in the world ~ 5-1
Programming to fight in the world 5-3
Let's do "Hello World" in 40 languages! !!
Start SQLite in a programming language
cout << "Hello, World! \ N" in python
Hello World in Flask [Appropriate memo]
Code: 2 "Hello World" in "Choregraphe-Python script"
Programming to fight in the world ~ 5-2
The most sought after programming language in 2020
Pymacs hello world
Programming in python
Draw graphs in the programming language Julia
Hello world instead of localhost in Django
How to display Hello world in python
cython hello world
Guidelines for reincarnating in the world of linux programming development (C / C ++ language)
Hello World with gRPC / go in Docker environment
Hello world with full features of Go language
Tools that fit in your hand (programming language)
web2py memo: Hello World
I got an error when trying to run Hello World in Go language
Qiita's popular programming language
hello world with ctypes
RabbitMQ Tutorial 1 ("Hello World!")
Hello, World with Docker
Hello World on Django
Python programming in Excel
Django's first Hello World
Hello world with flask
Japan may be Galapagos in terms of programming language
10 Most Popular Programming Languages in 2020
Heapsort made in C language
Display "Hello World" created in the local environment on the web
Draw hello world with mod_wsgi
Hello World with Flask + Hamlish
Until hello world with zappa
[2019 latest version] Programming language comparison
Hello World in various languages [Python / PHP / Java / Perl / Ruby]
Hello World (beginners) on Django
Python starting with Hello world!
Explanation of CSV and implementation example in each programming language
Getting Started with Heroku-Viewing Hello World in Python Django with Raspberry PI 3
Hit the echo command in the Mac terminal to output Hello World
Python beginners tried Hello World in 30 seconds using the micro-framework Flask
Think seriously about what language to use in programming education and programming education.
A programming language that young people will need in the future
GUI programming in Python using Appjar
Functional programming in Python Project Euler 1
Try implementing Yubaba in Go language
Multi-instance module test in C language
What beginners think about programming in 2016
Use optinal type-like in Go language
Activity record in the programming circle
Hello, world! With virtual CAN communication
Functional programming in Python Project Euler 3
100 Language Processing Knock Chapter 1 in Python
Introduction to TensorFlow --Hello World Edition