[Python] Which of these is a mutable data type in Python?
Anonymous Quiz
23%
String
27%
Tuple
42%
List
8%
Integer
👍1
[Cybersecurity] What is a SQL injection attack?
Anonymous Quiz
16%
A virus that affects SQL databases
75%
A malicious SQL query insertion into application input
8%
A tool for database management
2%
A type of database encryption
[Cybersecurity] What is a SQL injection attack?
Anonymous Quiz
4%
A virus that affects SQL databases
89%
A malicious SQL query insertion into application input
4%
A tool for database management
2%
A type of database encryption
[Cybersecurity] What is a SQL injection attack?
Anonymous Quiz
13%
A virus that affects SQL databases
83%
A malicious SQL query insertion into application input
0%
A tool for database management
4%
A type of database encryption
[Flutter] What is the primary programming language used in Flutter?
Anonymous Quiz
41%
Java
10%
Kotlin
45%
Dart
4%
Swift
[Web Development] What does HTML stand for?
Anonymous Quiz
79%
Hyper Text Markup Language
8%
High Technical Modern Language
9%
Hyper Transfer Markup Language
5%
High Text Machine Language
[Web Development] Which of these is not a JavaScript framework?
Anonymous Quiz
11%
React
7%
Angular
75%
Django
7%
Vue
Forwarded from Learning Python for FREE (Nde Dilan)
Qui est arrivé au jour 50-60?
Anonymous Poll
18%
Moi , j'attends la suite 🔥
36%
Je sais pas où commencer 😢
11%
J'y suis presque 😁👍
5%
J'aurais des questions spécifiques 🧐
30%
Comment ça marche ?
🧠 Build your own ChatGPT
⬇️ step-by-step instructions ⬇️
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.
Learning Python for FREE
#Day 1 : Apprenez les bases de la gestion de données en Python! Ce fichier ZIP vous guidera à travers le monde fascinant des variables en Python 🪄, vous permettant de stocker, manipuler et organiser des informations comme un pro . Que vous attend-il ? Découverte…
Voici le début du 100 days of code
❤1
Qui est partant pour une séance de quizz juste sur python pour tester les connaissances ?
❤5👍2
Learning Python for FREE
Qui est partant pour une séance de quizz juste sur python pour tester les connaissances ?
J'envoie le quizz à 21h, soyez prêt 😁
[Python] What will happen if you call `list.remove(item)` on a list where `item` does not exist?
Anonymous Quiz
32%
The list remains unchanged
37%
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]) ```
```python print('Python'[-2]) ```
Anonymous Quiz
11%
'P'
13%
'n'
23%
'h'
53%
'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 difference between `is` and `==` in Python?
Anonymous Quiz
57%
`is` compares object identity, `==` compares values
28%
`is` compares values, `==` compares object identity
6%
Both compare object identity
8%
Both compare values
[Python] What is the output of the following code?
```python x = [1, 2, 3] y = x x[0] = 0 print(y) ```
```python x = [1, 2, 3] y = x x[0] = 0 print(y) ```
Anonymous Quiz
19%
[1, 2, 3]
42%
[0, 2, 3]
19%
[0, 1, 2]
21%
[1, 2, 0]
👍1