tropics...
Active Member
- Joined
- Jan 7, 2025
- Messages
- 156
- Gender
- Female
- HSC
- 2025
guys is it too late to start english tutoring for year 12 when you've already completed 3 out of 5 internal exams...
Students helping students, join us in improving Bored of Studies by donating and supporting future students!
I mean it's better than nothing. And u can still make an academic comeback so maybe tutoring will helpguys is it too late to start english tutoring for year 12 when you've already completed 3 out of 5 internal exams...
okkkk yayaya ty I've been crying for 5 nights cos I've been getting rlly bad marks, avg is also rlly low tho so hopefully we get scaleeedddd.I mean it's better than nothing. And u can still make an academic comeback so maybe tutoring will help
yeah u can. Like u still have 2 internals and then ur hsc which is 50% so there's still time to get a band 4 unless ur getting like 10% nowalso my ranks r in fkin hell rn, can I still make them up b4 the HSC?
crying about English for days is so realokkkk yayaya ty I've been crying for 5 nights cos I've been getting rlly bad marks, avg is also rlly low tho so hopefully we get scaleeedddd.
oops sorry b4 as in before but HOPEFULLY I GET HIGH BAND 5S AND 6S pls wish me luck ty ilyyeah u can. Like u still have 2 internals and then ur hsc which is 50% so there's still time to get a band 4 unless ur getting like 10% now
hahaah enjoy year 11 while u cannncrying about English for days is so real
Good luck! If it’s any consolation I’m also in a similar boat, trying to get b6s but pretty stressed over sem 1oops sorry b4 as in before but HOPEFULLY I GET HIGH BAND 5S AND 6S pls wish me luck ty ily
Good luck!!!oops sorry b4 as in before but HOPEFULLY I GET HIGH BAND 5S AND 6S pls wish me luck ty ily
tysmmmmm I wish u luck too !! <3Good luck!!!
I wish I could restart year 11 but at the same time I would want to suffer through term 1 againi wish i could restart year 12 rn
tysmmmmm I wish u luck too !! <3
AWW I'm so glad I'm not alone, lets keep each other updated, we can only go up from here, GOODLUCK!Good luck! If it’s any consolation I’m also in a similar boat, trying to get b6s but pretty stressed over sem 1
we can do it!!
Sure!! Also glad I’m not alone, ur so right keep going!! : )AWW I'm so glad I'm not alone, lets keep each other updated, we can only go up from here, GOODLUCK!
def linear():
fx = input('Enter linear equation (y=mx+c): ').lower()
#testing if there is a value for c, if not it is 0
if fx[-1] == 'x':
c = 0
else:
c = int(fx.partition('x')[-1])
#testing if there is a value for m, if not it is 1
if fx[0] == 'x':
m = 1
elif fx[0] != 'x':
m = int(fx.partition('x')[0])
else:
m = int(input('Value for {y[0]}? '))
print(f'm = {m}, c = {c}')
obj = 'O'
# if '-' not in fx:
# c = int(-c)
x = 10
# if m >= 3:
# obj = '|'
# elif m < 3:
# obj = '/'
print('^')
while x > 1:
for i in range(m-1):#logic to leave space for obj
print('|') #move cursor downwards by m amount
y = round((m * x) + c)
print(f'|{' '*(x-2)}', end='')#-2 because there are two characters printed on the line
print(obj)
x = x - 1
# print(obj)
# for i in range(c):
# print('|')
for i in range(c):
print('|')
print(f'{'﹉'*7}>')
while True:
linear()
ts so hard to read in dark modeBeta program I will name 'Delta+' because why not (e.g input 3x+5)Python:def linear(): fx = input('Enter linear equation (y=mx+c): ').lower() #testing if there is a value for c, if not it is 0 if fx[-1] == 'x': c = 0 else: c = int(fx.partition('x')[-1]) #testing if there is a value for m, if not it is 1 if fx[0] == 'x': m = 1 elif fx[0] != 'x': m = int(fx.partition('x')[0]) else: m = int(input('Value for {y[0]}? ')) print(f'm = {m}, c = {c}') obj = 'O' # if '-' not in fx: # c = int(-c) x = 10 # if m >= 3: # obj = '|' # elif m < 3: # obj = '/' print('^') while x > 1: for i in range(m-1):#logic to leave space for obj print('|') #move cursor downwards by m amount y = round((m * x) + c) print(f'|{' '*(x-2)}', end='')#-2 because there are two characters printed on the line print(obj) x = x - 1 # print(obj) # for i in range(c): # print('|') for i in range(c): print('|') print(f'{'﹉'*7}>') while True: linear()
gotta open up on a diff account to make out half of that ts is NOT W3 compliantts so hard to read in dark mode![]()
