Skip to main content
Practice

Features of Python and Simple Code Example

Python is a versatile programming language used by everyone from coding beginners to software professionals.


Features of Python

  • Clear and Concise Syntax : The syntax of Python resembles human language, making it relatively easy to read and understand compared to other languages.

  • Variety of Uses : It is used in various fields such as web development, data science, artificial intelligence, and task automation.

  • Active Community : It is easy to find reference materials for programming, and it provides extensive libraries (collections of code performing specific functions).


Coding Practice

Do you have specific content you want to display on the screen? Just as the English word "print" suggests, you can use print() and place the desired content inside the parentheses.

Below is a Python code example that prints the contents of a variable named message.

Python Variable Printing
message = "Hello, Python!"

print(message)

For your reference, data composed of text like "Hello, Python!" is called a string. Strings are expressed by enclosing them in single quotes (') or double quotes (").

To print a number, you can place the number inside the parentheses, like print(1), print(321), print(3.14).