temporarylol
Well-Known Member
uhh didn't you go to that school...Wow ur future school seems like a shit school
dropping 10 ranks smh

uhh didn't you go to that school...Wow ur future school seems like a shit school
dropping 10 ranks smh
Wow ur future school seems like a shit school
dropping 10 ranks smh
i went plcuhh didn't you go to that school...
![]()
ah ok yes that makes sensei went plc
import requests
import pandas as pd
SCHOOLS = {}
def fetchTable(url):
r = requests.get(url)
df_list = pd.read_html(r.text)
df = df_list[0]
b = df.values.tolist()
return b[1:]
base = "https://educationstandards.nsw.edu.au/wps/portal/nesa/about/events/merit-lists/distinguished-achievers/2022/"
for surname in "abcdefghijklmnopqrstuvwxyz":
print(surname)
l = fetchTable(base + surname)
for result in l:
school = result[1]
subjects = result[2].split(" ")
if school not in SCHOOLS:
SCHOOLS[school] = {}
for s in subjects:
subject = s.split("-")[1].strip()
if subject in SCHOOLS[school]:
SCHOOLS[school][subject] += 1
else:
SCHOOLS[school][subject] = 1
inp = "."
while inp:
inp = input("School: ")
if inp in SCHOOLS:
for sub in SCHOOLS[inp]:
print(f"{sub}: {SCHOOLS[inp][sub]}")
print("")
print("")
print("")
Love the Python haha. How long have you been coding for out of interest?If people want here's a little bit of code that allows you to access subjects/numbers of band 6/e4 for any school. Just jerryrigged it together, it works for me.
Code:import requests import pandas as pd SCHOOLS = {} def fetchTable(url): r = requests.get(url) df_list = pd.read_html(r.text) df = df_list[0] b = df.values.tolist() return b[1:] base = "https://educationstandards.nsw.edu.au/wps/portal/nesa/about/events/merit-lists/distinguished-achievers/2022/" for surname in "abcdefghijklmnopqrstuvwxyz": print(surname) l = fetchTable(base + surname) for result in l: school = result[1] subjects = result[2].split(" ") if school not in SCHOOLS: SCHOOLS[school] = {} for s in subjects: subject = s.split("-")[1].strip() if subject in SCHOOLS[school]: SCHOOLS[school][subject] += 1 else: SCHOOLS[school][subject] = 1 inp = "." while inp: inp = input("School: ") if inp in SCHOOLS: for sub in SCHOOLS[inp]: print(f"{sub}: {SCHOOLS[inp][sub]}") print("") print("") print("")
If you're actually telling the truth, then god damn, that's an incredible achievement. Nice one mate.i'm late, but 99.95, am ecstatic)))
if any 2023' need motivation, i procrastinated a massive amount and took many many full day breaks - prioritise resting, relaxing, and taking lots of time for yourself. I definitely didn't study during the summer holidays before our hsc year if that's reassuring, but i certainly recommend it... good luck to everyone doing the hsc next year!
just like jail, uni is just a placejust like age, they r all just numbers.
Dw Unis pretty fun imo. Things move much faster way more interesting. Much less of that grind out marking criteria bullshit.just like jail, uni is just a place
I'll definitely miss it, it's unlikely i'll ever be able to repeat making mudslides, cutting chairs into pieces, throwing food and sandwich bags filled with water at the year 8's, sneaking out during the wet weather bell and breaking shit in the same fun teenage way like in high school.Don't miss high school much lmao
can you run down what you would do every day after school (in terms of studying). Thanksi'm late, but 99.95, am ecstatic)))
if any 2023' need motivation, i procrastinated a massive amount and took many many full day breaks - prioritise resting, relaxing, and taking lots of time for yourself. I definitely didn't study during the summer holidays before our hsc year if that's reassuring, but i certainly recommend it... good luck to everyone doing the hsc next year!
1. get homecan you run down what you would do every day after school (in terms of studying). Thanks
in terms of what schools got state ranks for a subject, you can check Hsc ninja.How can you check which schools ranked top in certain subjects? Like ancient history or English etc?