Forwarded from Web development for FREE
Dans cette vidéo, je vous guide étape par étape
pour postuler au GitHub Student Developer Pack.
Vous découvrirez tous les prérequis, astuces et conseils indispensables
pour maximiser vos chances d’acceptation
https://www.youtube.com/watch?v=3uOvCMTSTww
pour postuler au GitHub Student Developer Pack.
Vous découvrirez tous les prérequis, astuces et conseils indispensables
pour maximiser vos chances d’acceptation
https://www.youtube.com/watch?v=3uOvCMTSTww
YouTube
Guide Complet : Comment Postuler au GitHub Student Developer Pack
Dans cette vidéo, je vous guide étape par étape pour postuler au GitHub Student Developer Pack. Vous découvrirez tous les prérequis, astuces et conseils indispensables pour maximiser vos chances d’acceptation. Que vous soyez étudiant en informatique ou passionné…
Forwarded from 💻🛠 Programmation et tutos🛠💻 (NDE HURICH DILAN)
Prochain rendez-vous c'est ce soir.
Un seul lien : https://meet.google.com/rdn-mysr-rox
A partir de 20h
Un seul lien : https://meet.google.com/rdn-mysr-rox
A partir de 20h
Forwarded from 💻🛠 Programmation et tutos🛠💻 (NDE HURICH DILAN)
Nous venons de terminer le Jour 2 et c'était tout simplement magnifique.
https://www.kaggle.com/learn-guide/5-day-genai
N'oubliez pas de consulter le notebook pour tester le code et jouer avec :
https://colab.research.google.com/drive/1x3L4IoqZ-XKks31DNKFxs6WpmeXD4Mt1?usp=sharing
Si vous avez des questions ou des suggestions, n'hésitez pas !
Le challenge continue sur https://gdg.community.dev/j/8ug4rayykdk4q/
https://www.kaggle.com/learn-guide/5-day-genai
N'oubliez pas de consulter le notebook pour tester le code et jouer avec :
https://colab.research.google.com/drive/1x3L4IoqZ-XKks31DNKFxs6WpmeXD4Mt1?usp=sharing
Si vous avez des questions ou des suggestions, n'hésitez pas !
Le challenge continue sur https://gdg.community.dev/j/8ug4rayykdk4q/
👍2🔥2❤1
Forwarded from 💻🛠 Programmation et tutos🛠💻 (NDE HURICH DILAN)
Hello everyone,
I hope you're all doing well.
---------------------------------------------------------
Hello à tous,
En espérant que tout le monde va bien,
We are starting in 4 minutes
https://meet.google.com/rdn-mysr-rox
I hope you're all doing well.
---------------------------------------------------------
Hello à tous,
En espérant que tout le monde va bien,
We are starting in 4 minutes
https://meet.google.com/rdn-mysr-rox
Google
Real-time meetings by Google. Using your browser, share your video, desktop, and presentations with teammates and customers.
💻🛠 Programmation et tutos🛠💻
Hello everyone, I hope you're all doing well. --------------------------------------------------------- Hello à tous, En espérant que tout le monde va bien, We are starting in 4 minutes https://meet.google.com/rdn-mysr-rox
Les 5 jours de challenge sont finis.
Et si on continuais avec nos 100 jours de python ?
Et si on continuais avec nos 100 jours de python ?
Anonymous Poll
53%
Oui oui ✨😌
5%
Nonnn 😐
16%
Quel challenge ? 🥲
27%
C'est quoi les 100 jours de python ?😅
Learning Python for FREE pinned «Les 5 jours de challenge sont finis.
Et si on continuais avec nos 100 jours de python ?»
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.
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.
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] What does the `input()` function return in Python?
Anonymous Quiz
29%
An integer
53%
A string
12%
A boolean
7%
A float
[Python] What is the output of the following code?
```python print('Python'[-2]) ```
```python print('Python'[-2]) ```
Anonymous Quiz
19%
'P'
6%
'n'
26%
'h'
49%
'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 difference between `is` and `==` in Python?
Anonymous Quiz
57%
`is` compares object identity, `==` compares values
26%
`is` compares values, `==` compares object identity
9%
Both compare object identity
7%
Both compare values
❤2
[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
29%
[1, 2, 3]
38%
[0, 2, 3]
17%
[0, 1, 2]
16%
[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
21%
The first element of the list is removed
13%
None of the above
❤2
[Python] What is the purpose of the `__init__` method in a Python class?
Anonymous Quiz
17%
To define a class method
24%
To create an instance of the class
56%
To initialize the attributes of an object
2%
To delete an object
[Python] Which of the following is NOT a valid way to import a module in Python?
Anonymous Quiz
14%
`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) ```
```python print(2 ** 3 ** 2) ```
Anonymous Quiz
42%
64
31%
512
6%
256
22%
None of the above
[Python] Which of the following statements about Python dictionaries is FALSE?
Anonymous Quiz
28%
Dictionaries are unordered collections
21%
Keys in dictionaries must be immutable
30%
A dictionary can contain duplicate keys
21%
Dictionaries are mutable