Learning Python for FREE
3.32K subscribers
60 photos
2 videos
98 files
57 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.
3👍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
30%
An integer
52%
A string
12%
A boolean
7%
A float
[Python] What is the output of the following code?

```python print('Python'[-2]) ```
Anonymous Quiz
19%
'P'
7%
'n'
26%
'h'
48%
'o'
[Python] Which of the following is a mutable data type in Python?
Anonymous Quiz
34%
Tuple
21%
String
44%
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
29%
[1, 2, 3]
39%
[0, 2, 3]
17%
[0, 1, 2]
15%
[1, 2, 0]
[Python] What will happen if you call `list.remove(item)` on a list where `item` does not exist?
Anonymous Quiz
28%
The list remains unchanged
38%
An exception is raised
23%
The first element of the list is removed
13%
None of the above
2
[Python] Which of the following is NOT a valid way to import a module in Python?
Anonymous Quiz
13%
`import math`
25%
`from math import *`
8%
`from math import sqrt`
53%
`import math as m from sqrt`
👍1
[Python] What is the output of the following code?

```python print(2 ** 3 ** 2) ```
Anonymous Quiz
41%
64
30%
512
6%
256
23%
None of the above
[Python] What is the primary programming language used in Data Science?
Anonymous Quiz
15%
Java
4%
Kotlin
80%
Python
1%
Swift
3
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
🔰 6 PYTHON WAYS TO REVERSE A LIST
2