szczęśliwy
Posts
-
name for social network site -
me seeing if python works in posts here...@Enchanted said in me seeing if python works in posts here...:
what is python?
Python is a general purpose high level programming language designed by Guido Van Rossan (no gunantee the name is right, thats from memory lmao). (in other words its js a chill coding language man)
-
I got attacked by girlsbruzzz everybody including u knows ur lying

-
chat im being deported back to russia what do i doand why one in the middle of being abducted by the Government would jump on bdns to tell everyone?
-
hi im shrubhey bruh
-
do you have a favorite song or artist??I'm setting off, but not without my muse...
-
Music recommendations & Music tastesi like classical music and mostly taylor swift (so boring lol).
-
song or artist recommendations?i would rec my fave but yu would hate it lol
-
your favorite piano piece@seesaw LMAOO frfr
-
your favorite piano piece@seesaw LMAOOOO yeah u ever hears Shopans Bullude in g flat minyor?

-
AHHHHHHH@Sofii nahh oddly I actually like his stuff (but I live under a rock frfr
) -
gng whats the best eminem song?@Sofii ooo I love those (good taste frfr
) -
gng whats the best eminem song?@orbital damnnn loving the respect (nah ur right
) -
opinions on Laufey?shes great tho, plus i deeply appreciate some mainstream music actuall being classically inspired. ...but tbh i would know who tf she was if not for @Sofii lmaooooo
-
does anyone have any good sad song recs??@DannilTrifonov said in does anyone have any good sad song recs??:
I would say hands down Nocturne f minor op.55 is the most sad. and theres plenty more. as of anythng thats not Chopin i have no clue lmao
nobody cares about my music lmao
-
piano??does anybody here have any tips for learning piano? ik a lot about musc theory its just hard to get my hqnds to actually do what my brain wants
Well as the resident piano nerd of bdns, i would be delighted to help you. Just dm me and i promise i can help you with anything. it really all boils down to the right approach: you should want to play piano, you have to be dedicated, and you have to be willing to put in a lot of work. but for more details or any general advice with anything, just ask me.
-
does anyone have any good sad song recs??I would say hands down Nocturne f minor op.55 is the most sad. and theres plenty more. as of anythng thats not Chopin i have no clue lmao
-
How was your music taste before and now?well I'm sure nobdy wants to hear me talk about classical so i'll just keep my mouth shut.
-
What song did you last listen to ?i just listened to chopin waltz in c sharp minor, but obviously im boring so it doesn't matter.
-
coding...my stupid-ass python calculator:
from math import squareroot class Result(): def __init__(self, result): self.result = result number_1 = int(input("Enter first number: ")) number_2 = int(input("Enter second number: ")) type = input("Enter operation type: def calculate(no.1, no.2, type): if type == "+": answer = no.1 + no.2 in_log = Result(answer) print(answer) elif type == "-": answer = no.1 - no.2 in_log = Result(answer) print(answer) elif type == "*": answer = no.1 * no.2 in_log = Result(answer) print(answer) elif type == "/": answer = no.1 / no.2 in_log = Result(answer) print(answer) else: print("Please input correct numbers or type.") calculate(number_1, number_2, type)