Learning Python for FREE
3.3K subscribers
57 photos
2 videos
98 files
54 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
[Flutter] What is the primary programming language used in Flutter?
Anonymous Quiz
40%
Java
9%
Kotlin
47%
Dart
4%
Swift
[Web Development] Which of these is not a JavaScript framework?
Anonymous Quiz
11%
React
6%
Angular
77%
Django
6%
Vue
🧠 Build your own ChatGPT

Build an LLM app with Mixture of AI Agents using small Open Source LLMs that can beat GPT-4o in just 40 lines of Python Code


⬇️ step-by-step instructions ⬇️
1👍1
Learning Python for FREE
APPRENDRE_PYTHON_DE_A_à_Z_LamjAFnybo0_135.mp4
Pour une ressource en Français, c'est par ici.
Qui est partant pour une séance de quizz juste sur python pour tester les connaissances ?
5👍2
[Python] What will happen if you call `list.remove(item)` on a list where `item` does not exist?
Anonymous Quiz
33%
The list remains unchanged
36%
An exception is raised
18%
The first element of the list is removed
13%
None of the above
[Python] What does the `input()` function return in Python?
Anonymous Quiz
19%
An integer
63%
A string
10%
A boolean
8%
A float
1
[Python] What is the output of the following code?

```python print('Python'[-2]) ```
Anonymous Quiz
13%
'P'
13%
'n'
23%
'h'
52%
'o'
[Python] Which of the following is a mutable data type in Python?
Anonymous Quiz
17%
Tuple
17%
String
61%
List
5%
Integer
[Python] What is the output of the following code?

```python x = [1, 2, 3] y = x x[0] = 0 print(y) ```
Anonymous Quiz
18%
[1, 2, 3]
43%
[0, 2, 3]
18%
[0, 1, 2]
20%
[1, 2, 0]
👍1
[Python] What will happen if you call `list.remove(item)` on a list where `item` does not exist?
Anonymous Quiz
23%
The list remains unchanged
53%
An exception is raised
13%
The first element of the list is removed
13%
None of the above
[Python] Which of the following is NOT a valid way to import a module in Python?
Anonymous Quiz
20%
`import math`
13%
`from math import *`
18%
`from math import sqrt`
50%
`import math as m from sqrt`