update
This commit is contained in:
parent
2992f4f408
commit
4f46de8d00
3330 changed files with 394553 additions and 76939 deletions
1
.config/Code/User/History/5b45db33/Mn81.py
Normal file
1
.config/Code/User/History/5b45db33/Mn81.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
pass_fail = lambda marks : marks > 50 ? "Pass" : "Fail"
|
||||
3
.config/Code/User/History/5b45db33/QH2l.py
Normal file
3
.config/Code/User/History/5b45db33/QH2l.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
pass_fail = lambda marks : "Pass" if marks >= 50 else "Fail"
|
||||
|
||||
grades = [50, 80, 90, 40, 30, 70]
|
||||
8
.config/Code/User/History/5b45db33/RSzl.py
Normal file
8
.config/Code/User/History/5b45db33/RSzl.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
pass_fail = lambda marks : "Pass" if marks > 50 else "Fail"
|
||||
|
||||
grades = [50, 80, 90, 40, 30, 70]
|
||||
output = []
|
||||
for grade in grades:
|
||||
output.append(pass_fail(grade))
|
||||
|
||||
print(output)
|
||||
1
.config/Code/User/History/5b45db33/entries.json
Normal file
1
.config/Code/User/History/5b45db33/entries.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"version":1,"resource":"file:///home/rafayahmad/Stuff/Coding/Python/IDS/lab3/task3.py","entries":[{"id":"rUBa.py","timestamp":1725423200301},{"id":"vkD8.py","timestamp":1725423225744},{"id":"Mn81.py","timestamp":1725423252650},{"id":"uyRU.py","timestamp":1725423362263},{"id":"QH2l.py","timestamp":1725423389046},{"id":"tJz4.py","timestamp":1725423446032},{"id":"fMxs.py","timestamp":1725423457729},{"id":"lciu.py","timestamp":1725423498362},{"id":"RSzl.py","timestamp":1725423612039}]}
|
||||
8
.config/Code/User/History/5b45db33/fMxs.py
Normal file
8
.config/Code/User/History/5b45db33/fMxs.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
pass_fail = lambda marks : "Pass" if marks >= 50 else "Fail"
|
||||
|
||||
grades = [50, 80, 90, 40, 30, 70]
|
||||
output = []
|
||||
for grade in grades:
|
||||
output.append(pass_fail(grades))
|
||||
|
||||
print(output)
|
||||
8
.config/Code/User/History/5b45db33/lciu.py
Normal file
8
.config/Code/User/History/5b45db33/lciu.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
pass_fail = lambda marks : "Pass" if marks > 50 else "Fail"
|
||||
|
||||
grades = [50, 80, 90, 40, 30, 70]
|
||||
output = []
|
||||
for grade in grades:
|
||||
output.append(pass_fail(grades))
|
||||
|
||||
print(output)
|
||||
0
.config/Code/User/History/5b45db33/rUBa.py
Normal file
0
.config/Code/User/History/5b45db33/rUBa.py
Normal file
6
.config/Code/User/History/5b45db33/tJz4.py
Normal file
6
.config/Code/User/History/5b45db33/tJz4.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
pass_fail = lambda marks : "Pass" if marks >= 50 else "Fail"
|
||||
|
||||
grades = [50, 80, 90, 40, 30, 70]
|
||||
output = []
|
||||
for grade in grades:
|
||||
output.append(pass_fail(grades))
|
||||
1
.config/Code/User/History/5b45db33/uyRU.py
Normal file
1
.config/Code/User/History/5b45db33/uyRU.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
pass_fail = lambda marks : "Pass" if marks > 50 else "Fail"
|
||||
1
.config/Code/User/History/5b45db33/vkD8.py
Normal file
1
.config/Code/User/History/5b45db33/vkD8.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
pass_fail = lambda marks : marks > 50
|
||||
Loading…
Add table
Add a link
Reference in a new issue