Learning Python for FREE
2.88K subscribers
46 photos
2 videos
96 files
43 links
🧐 Want to learn the Python programming language and get one of the most demanded Skil 💵?

Then stay tuned 🌟 and just watch the course we publish once a week🗓️:

https://t.me/python_learning_free
Download Telegram
Learning Python for FREE pinned «Les 5 jours de challenge sont finis.

Et si on continuais avec nos 100 jours de python ?
»
Forwarded from Learning Python for FREE
Pour les ressources j'ai choisis une formation au format vidéo suivie de quelques exercices de temps en temps.


Cette formation est une formation de 100 jours (100 days of python) et chaque jour je vais envoyer une vidéo sur laquelle vous allez travailler et faire vos propres recherches.



Si vous suivez la formation chaque jour ou juste suivez les vidéos vous verrez votre niveau augmenter de jour en jour 🖥

J'enverrais la première vidéo demain, en attendant apprêté vos machines ou vos téléphones (et oui vous pouvez coder en python sur votre téléphone ) et un cahier ou bloc note où vous pourrez noté ce que vous apprenez et y revenir après.
2👍1
⌨️ Python Question / Quiz;

What is the output of the following Python code, and why?
[Python] What does the `input()` function return in Python?
Anonymous Quiz
24%
An integer
57%
A string
14%
A boolean
6%
A float
[Python] What is the output of the following code?

```python print('Python'[-2]) ```
Anonymous Quiz
18%
'P'
7%
'n'
27%
'h'
48%
'o'
[Python] Which of the following is a mutable data type in Python?
Anonymous Quiz
34%
Tuple
21%
String
43%
List
2%
Integer
[Python] What is the output of the following code?

```python x = [1, 2, 3] y = x x[0] = 0 print(y) ```
Anonymous Quiz
25%
[1, 2, 3]
38%
[0, 2, 3]
21%
[0, 1, 2]
17%
[1, 2, 0]
[Python] What will happen if you call `list.remove(item)` on a list where `item` does not exist?
Anonymous Quiz
26%
The list remains unchanged
38%
An exception is raised
21%
The first element of the list is removed
15%
None of the above
2
[Python] Which of the following is NOT a valid way to import a module in Python?
Anonymous Quiz
14%
`import math`
27%
`from math import *`
8%
`from math import sqrt`
51%
`import math as m from sqrt`
👍1
[Python] What is the output of the following code?

```python print(2 ** 3 ** 2) ```
Anonymous Quiz
37%
64
35%
512
6%
256
22%
None of the above
[Python] What is the primary programming language used in Data Science?
Anonymous Quiz
15%
Java
5%
Kotlin
79%
Python
1%
Swift
2
Forwarded from 💻🛠 Programmation et tutos🛠💻 (NDE HURICH DILAN)
🌟 Vous êtes invité ! 🌟

📌 Événement : Exploration des technologies Google pour les spécialistes techniques  

📅 Date : Samedi 19 avril 2025
Heure : 20h30 – 21h30 (WAT)


🔗 Rejoignez ici : Ici

Salut, passionné de technologie ! 🚀
Préparez-vous pour une session détendue et enrichissante où nous explorerons le monde des technologies Google – du Cloud au Machine Learning en passant par les outils Web qui peuvent dynamiser vos projets et votre carrière ! 💻🌐


Que vous soyez un débutant curieux ou un expert technique, vous découvrirez de nouvelles façons d'optimiser votre flux de travail et de réseauter avec des personnes formidables dans la communauté. 🤝💬


Apprenons, connectons-nous et grandissons ensemble ! 🎉
Ne manquez pas ça !
👍21
Forwarded from Learning Linux For FREE
📶 Networking Crash Course GARP

Gratuitous Address Resolution Protocol (GARP) is a specialized feature of ARP where a device sends ARP messages without being explicitly requested.

Unlike standard ARP, which is reactive (responding to ARP requests), GARP is proactive. It is used to announce a device's presence, update ARP tables, or claim ownership of an IP address on a network.

When a device sends a GARP message, it broadcasts its IP and MAC address to all hosts on the network. This helps devices update their ARP caches without waiting for communication requests.


Here is how GARP works:

1. Broadcast: A device sends an ARP packet with its own IP address as both the source and destination, ensuring all devices on the network see it.

2. Switch Forwarding: The switch forwards the GARP message to all interfaces, excluding the one it was received on.

3. Table Update: Other devices update their ARP tables with the IP/MAC...
2🔥1
🔰 6 PYTHON WAYS TO REVERSE A LIST
1