Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Commiting all the changes made lacally. #3

Open
wants to merge 40 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
9abaa94
My first commit!
ChristianValery Jun 6, 2024
520981f
Merge branch 'main' of github.com:becodeorg/LGG-Thomas4
ChristianValery Jun 6, 2024
078958c
Merge pull request #1 from becodeorg/main
ChristianValery Jun 6, 2024
93ffc65
Merge branch 'main' of github.com:becodeorg/LGG-Thomas4
ChristianValery Jun 7, 2024
060fc47
Merge pull request #2 from becodeorg/main
ChristianValery Jun 7, 2024
609bb08
I run the notebooks '01-basics-operators.ipynb' and '02-conditions-an…
ChristianValery Jun 7, 2024
f8d6daa
Merge branch 'becodeorg:main' into main
ChristianValery Jun 11, 2024
6099293
Merge branch 'main' of github.com:ChristianValery/LGG-Thomas4-ChristianN
ChristianValery Jun 11, 2024
23ecf3d
The drills and the quiz of PythonFundamentals are done!
ChristianValery Jun 11, 2024
82a94d0
Merge branch 'main' of github.com:becodeorg/LGG-Thomas4
ChristianValery Jun 13, 2024
7437eeb
Merge pull request #3 from becodeorg/main
ChristianValery Jun 13, 2024
7163227
Merge branch 'main' of github.com:becodeorg/LGG-Thomas4
ChristianValery Jun 13, 2024
648b41e
Merge pull request #4 from becodeorg/main
ChristianValery Jun 13, 2024
5e114f1
Merge branch 'main' of github.com:becodeorg/LGG-Thomas4
ChristianValery Jun 17, 2024
a193b1e
Merge pull request #5 from becodeorg/main
ChristianValery Jun 17, 2024
fa94e64
Updating some notebooks of the PythonAdvanced.
ChristianValery Jun 17, 2024
a9555e0
Merge branch 'main' of github.com:becodeorg/LGG-Thomas4
ChristianValery Jun 19, 2024
fbf79c7
Merge pull request #6 from becodeorg/main
ChristianValery Jun 19, 2024
c425394
Merge pull request #7 from becodeorg/main
ChristianValery Jun 24, 2024
62e963d
Merge pull request #8 from becodeorg/main
ChristianValery Jul 1, 2024
9686487
Some changes.
ChristianValery Jul 1, 2024
cf586d5
Merge branch 'main' of github.com:becodeorg/LGG-Thomas4
ChristianValery Jul 1, 2024
7d122d8
Merge branch 'main' of github.com:becodeorg/LGG-Thomas4
ChristianValery Jul 8, 2024
f189e96
Merge branch 'main' of github.com:becodeorg/LGG-Thomas4
ChristianValery Jul 15, 2024
50a3021
Merge branch 'main' of github.com:becodeorg/LGG-Thomas4
ChristianValery Jul 18, 2024
97f143a
Merge pull request #9 from becodeorg/main
ChristianValery Jul 18, 2024
3136a47
Some other changes.
ChristianValery Jul 23, 2024
7f161b8
Merge pull request #10 from becodeorg/main
ChristianValery Jul 23, 2024
bc0448a
Merge branch 'main' of github.com:becodeorg/LGG-Thomas4
ChristianValery Jul 23, 2024
29d91d5
Merge branch 'main' of github.com:becodeorg/LGG-Thomas4
ChristianValery Aug 12, 2024
c6dfd6f
DatabaseIntro has been modified.
ChristianValery Aug 22, 2024
609f54b
Merge branch 'main' of github.com:becodeorg/LGG-Thomas4
ChristianValery Aug 22, 2024
84a6442
Merge pull request #11 from becodeorg/main
ChristianValery Aug 22, 2024
efb422b
Merge pull request #12 from becodeorg/main
ChristianValery Aug 27, 2024
b9ad2ca
Merge branch 'main' of github.com:becodeorg/LGG-Thomas4
ChristianValery Aug 27, 2024
5cfbb60
Merge branch 'main' of github.com:ChristianValery/LGG-Thomas4-ChristianN
ChristianValery Aug 27, 2024
7815881
Merge pull request #13 from becodeorg/main
ChristianValery Aug 30, 2024
8548b84
Merge pull request #14 from becodeorg/main
ChristianValery Sep 2, 2024
02d2db7
Merge pull request #15 from becodeorg/main
ChristianValery Sep 5, 2024
ca696ff
Merge pull request #16 from becodeorg/main
ChristianValery Sep 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,19 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"True\n",
"False\n",
"True\n"
]
}
],
"source": [
"x = 2\n",
"print(x == 2) # prints out True\n",
Expand Down Expand Up @@ -66,9 +76,17 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 2,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"You're an adult!\n"
]
}
],
"source": [
"age = 23\n",
"if age >= 18:\n",
Expand All @@ -85,9 +103,17 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 3,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"You are one year short of being an adult.\n"
]
}
],
"source": [
"age = 17\n",
"if age >= 18:\n",
Expand All @@ -106,9 +132,17 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 4,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Come back later.\n"
]
}
],
"source": [
"age = 16\n",
"if age >= 18:\n",
Expand Down Expand Up @@ -137,9 +171,17 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 5,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"You are John AND Eric\n"
]
}
],
"source": [
"student1 = \"John\"\n",
"student2 = \"Eric\"\n",
Expand All @@ -159,9 +201,17 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 6,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Your name is either John or Eric.\n"
]
}
],
"source": [
"student1 = \"John\"\n",
"student2 = \"Ludovic\"\n",
Expand All @@ -182,9 +232,17 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 7,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"You're are Coach!\n"
]
}
],
"source": [
"name = \"Valérian\"\n",
"coach = [\"Valérian\", \"Ludovic\"]\n",
Expand All @@ -204,19 +262,36 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 8,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"True\n",
"False\n"
]
}
],
"source": [
"print(not False) # Prints out True\n",
"print((not False) == (False)) # Prints out False"
]
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 9,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Your are not a coach\n"
]
}
],
"source": [
"name = \"Ayaan\"\n",
"if name not in [\"Valérian\", \"Ludovic\"]:\n",
Expand All @@ -235,9 +310,18 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 10,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"True\n",
"False\n"
]
}
],
"source": [
"x = [1, 2, 3]\n",
"y = [1, 2, 3]\n",
Expand All @@ -255,19 +339,21 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3.9.13 64-bit (microsoft store)",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython"
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"version": "3.9.13"
"pygments_lexer": "ipython3",
"version": "3.12.1"
},
"vscode": {
"interpreter": {
Expand All @@ -276,5 +362,5 @@
}
},
"nbformat": 4,
"nbformat_minor": 2
"nbformat_minor": 4
}
Loading