Friday 31 May 2024

Programmation pour tous (mise en route de Python)

 

Introduction

Si vous êtes débutant en programmation et que vous souhaitez apprendre Python, le cours "Programming for Everybody (Getting Started with Python)" de l'Université du Michigan sur Coursera est parfait pour vous. Ce cours, dispensé en français, couvre les bases essentielles de la programmation en Python et est conçu pour ceux qui n'ont aucune expérience préalable en codage.

Contenu du Cours

Le cours comprend :

  • Installation de Python : Guide étape par étape pour installer Python sur votre ordinateur.
  • Écriture de votre premier programme : Introduction aux bases de la syntaxe Python.
  • Utilisation des variables et des fonctions : Apprenez à manipuler les données et à structurer votre code.
  • Boucles et instructions conditionnelles : Découvrez comment contrôler le flux de votre programme.

Structure du Cours

Le cours est structuré de manière à faciliter l'apprentissage avec des vidéos explicatives, des lectures, des quiz interactifs et des devoirs pratiques. Il est conçu pour être suivi à votre propre rythme, ce qui vous permet de l'adapter à votre emploi du temps.

Pourquoi Apprendre Python?

Python est un langage de programmation polyvalent et très populaire. Il est utilisé dans divers domaines tels que le développement web, l'analyse de données, l'intelligence artificielle, et bien plus encore. En apprenant Python, vous ouvrez la porte à de nombreuses opportunités professionnelles.

Certification

À la fin du cours, vous aurez la possibilité d'obtenir un certificat partageable qui peut enrichir votre CV et démontrer vos compétences en programmation Python.

Conclusion

Le cours "Programming for Everybody (Getting Started with Python)" est une excellente opportunité pour débuter en programmation. Il offre une introduction complète et accessible à Python, avec le soutien d'une institution prestigieuse comme l'Université du Michigan.

Pour plus d'informations et pour vous inscrire, visitez la page du cours sur Coursera. Bon apprentissage !

rejoindre gratuitement: Programmation pour tous (mise en route de Python)

Python Coding challenge - Day 221 | What is the output of the following Python Code?

 

Code:

def foo():

    try:

        return 1

    finally:

        return 2

print(foo())

Solution and Explanation:

The code defines a function foo that contains a try block and a finally block, and then prints the result of calling this function. Here's a step-by-step explanation:

Function Definition: 

def foo():

This line defines the function foo.

Try Block:

try: return 1

Inside the try block, the function attempts to return the value 1.

Finally Block:

finally:

    return 2

The finally block is guaranteed to execute, regardless of what happens in the try block. In this case, the finally block contains a return statement that returns the value 2.

Calling the Function and Printing the Result:

print(foo())

  1. This line calls the foo function and prints its return value.

What Happens When the Function is Called:

  • When foo is called, it enters the try block and executes return 1.
  • Normally, return 1 would cause the function to exit immediately, returning 1. However, because there is a finally block, Python executes the finally block before the function completes.
  • The finally block contains return 2. This statement overrides the previous return 1, so the function returns 2 instead.

Conclusion:

The finally block in Python always gets executed, and if it contains a return statement, it will override any return value from the try block. Therefore, the output of print(foo()) will be 2.

def foo(): try: return 1 finally: return 2 print(foo()) # This will output: 2


Wednesday 29 May 2024

Python Coding challenge - Day 220 | What is the output of the following Python Code?

 

Let's break down and explain the function foo and the print statement:

Function Definition: foo

def foo(a, b, *args, **kwargs):
    return a + b + sum(args) + sum(kwargs.values())

Parameters:

  1. a and b: These are positional parameters, meaning the first two arguments passed to foo will be assigned to a and b respectively.
  2. *args: This parameter allows the function to accept an arbitrary number of additional positional arguments. These arguments are captured as a tuple named args.
  3. **kwargs: This parameter allows the function to accept an arbitrary number of keyword arguments. These arguments are captured as a dictionary named kwargs.

Return Statement:

  • a + b: This adds the values of a and b.
  • sum(args): This calculates the sum of all additional positional arguments captured in args.
  • sum(kwargs.values()): This calculates the sum of all the values of the keyword arguments captured in kwargs.

The function returns the sum of these three components.

Function Call and Print Statement:

print(foo(1, 2, 3, 4, x=5, y=6))

Arguments:

  • 1 and 2: These are the first two positional arguments, so a = 1 and b = 2.
  • 3 and 4: These are additional positional arguments, so args = (3, 4).
  • x=5 and y=6: These are keyword arguments, so kwargs = {'x': 5, 'y': 6}.

Calculation:

  1. a + b: 1+2=3
  2. sum(args): 3+4=7
  3. sum(kwargs.values()): 5+6=11

Adding these together: 3+7+11=21

Output:

The print statement will output 21.

So, when you run: print(foo(1, 2, 3, 4, x=5, y=6))

The output will be: 21



Popular Posts

Categories

AI (28) Android (24) AngularJS (1) Assembly Language (2) aws (17) Azure (7) BI (10) book (4) Books (121) C (77) C# (12) C++ (82) Course (65) Coursera (183) Cybersecurity (24) data management (11) Data Science (99) Data Strucures (6) Deep Learning (11) Django (6) Downloads (3) edx (2) Engineering (14) Excel (13) Factorial (1) Finance (6) flutter (1) FPL (17) Google (19) Hadoop (3) HTML&CSS (46) IBM (25) IoT (1) IS (25) Java (92) Leet Code (4) Machine Learning (46) Meta (18) MICHIGAN (5) microsoft (4) Pandas (3) PHP (20) Projects (29) Python (779) Python Coding Challenge (261) Questions (2) R (70) React (6) Scripting (1) security (3) Selenium Webdriver (2) Software (17) SQL (41) UX Research (1) web application (8)

Followers

Person climbing a staircase. Learn Data Science from Scratch: online program with 21 courses