Python 2.2 : First program

<<<<<<< HEAD:en/course/py/lesson/2-2-first-program.html

Now we will start with our first program, you can launch your pycharm IDE and type on create new project then you rename it and you leave the default configurations.

=======

In this Python exercise, we will be asking for people's names. Python is a high-level programming language that is widely used for various purposes such as web development, data analysis, artificial intelligence, and more. It is known for its simplicity, readability, and ease of use.

To start the exercise, we will prompt the user to enter their name using the input() function. We will then store the name in a variable and print a welcome message with their name included. We can also use string concatenation or string formatting to make the message more personalized.

Next, we can use a loop to ask for more names. We can set a condition for the loop to continue until the user enters a specific keyword, such as "exit" or "quit". Inside the loop, we will repeat the same process of prompting the user to enter their name, storing it in a variable, and printing a personalized message.

This exercise is a great way to practice basic Python concepts such as input/output, variables, loops, and conditional statements. It also demonstrates how Python can be used to interact with users and personalize messages. With Python's versatility and wide range of applications, mastering these fundamental concepts can be a valuable skill for any aspiring programmer.

>>>>>>> main:en/course/py/lesson/10.5.exercise-ask-for-people-s-names.html