You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Michele Sessa 1984891870 feat(hello_python): add new exercise subject for scripting piscine 1 year ago
..
README.md feat(hello_python): add new exercise subject for scripting piscine 1 year ago

README.md

Hello Python

Here starts your journey in the marvelous world of Python, a very versatile programming language, popular for being accessible for beginner programmers and yet very powerful.

Setup

First, you'll need to have Python installed on your machine. In those exercises we use Python 3.10, we then recommend you to install Python 3.10 or higher.

To write your code, you may use your favorite IDE. If you don't have one, you can go for Visual Studio Code with Python extension pack installed:

Setup may vary in base of your Operating System or machine specificities, if you feel stuck check on internet for the specific steps that suits your configuration.

Instructions

Create a file hello_python.py and write inside a function say_hello_python that returns the string "Hello Python!".

def say_hello_python():
    # this is a function,
    # write your code here

Usage

Here is a possible code to test your function. Put it in another file (ex: test.py):

from hello_python import say_hello_python

print(say_hello_python())

Run your test file with the following command:

$ python3 test.py
Hello Python!
$

test.py file should be in the same directory of hello_python.py in order to work.

Hints

  • Python uses indentation to indicate in which block your code will run (many other languages uses parenthesis instead). It is then very important to indent your code properly.

  • return is a special world used to say which value a function should return (a function could also not return anything). For example return 10 will return the number ten.

  • A string is a set of characters wrapped by ". For example "Ciao bella" is a string containing the worlds Ciao Bella.

  • In test.py we are calling another function named print. This function is already present in Python standard library so we don't have to create it. This function at its core is made to write strings in the standard output.

References