PYTHON INTRODUCTION

RAHMADANI A
2 min readOct 5, 2022

--

PYTHON is a multipurpose interpretive programming language. Unlike other languages that are difficult to read and understand, python puts more emphasis on the readability of the code to make it easier to understand the syntax. This makes Python very easy to learn both for beginners and for those who have mastered other programming languages.

The language first appeared in 1991, designed by a man named Guido van Rossum. Until now Python is still being developed by the Python Software Foundation. The Python language supports almost all operating systems, even for the Linux operating system, almost all of its distros already include Python in it.

With simple and easy-to-implement code, a programmer can prioritize the development of the application being made, not even busy looking for syntax errors.

he language first appeared in 1991, designed by a man named Guido van Rossum. Until now Python is still being developed by the Python Software Foundation. The Python language supports almost all operating systems, even for the Linux operating system, almost all of its distros already include Python in it.

With simple and easy-to-implement code, a programmer can prioritize the development of the application being made, not even busy looking for syntax errors.

print("Python sangat simpel")

Just by writing the print code as above, you can print whatever you want in parentheses. Even at the end of the code, you don’t have to end it with a semicolon sign ();

If you enjoyed this story and would like to support me as a writer, consider following me on Medium.

This will make sure you get notifications whenever I publish a new article.

--

--