ITT we show our programming environment aesthetics. (Yes I like the github one)

ITT we show our programming environment aesthetics. (Yes I like the github one)

Attached: IDE.png (1920x1039, 60K)

>sublime

Cucks argue about IDE's to feel important. Code does not care where you write it, scrub.

>sublime

Congrats, you baited me.
You can use named arguments with defaults of None and avoid using kwargs all together.

def __init__(self, text=None, amt=None):
self.text = text if text else ''
self.amt = amt if amt else 0

Opening a test file, so productive.

>sublime
>white theme
>python

XD

Was wron wit dat?
???

>Code does not care where you write it, scrub.
Nor does it care what your editor theme is but you felt the need to make this thread.

Attached: screenshot.2.jpg (1454x1000, 559K)

#This is a static method
@staticmethod

Most useless comment of the year?

Is there any advantage to writing the type of a variable as opposed to just 'var'?

No it doesn't, but the one writing the code might. Scrub.

You: how dat diffarantt from dat first ting u said doe?

mhm, read it many times over

>12 posts into the thread and the OP is posting ebonics

vim with some plugins and a theme some guy made

Attached: Vim.png (981x464, 83K)

ouch, that hurts my eyes idk how u can use that lol but good on you man

grade = (percent < 60: 'F'.
percent >= 60: 'D',
percent >= 70: 'C',
percent >=80: 'D',
percent >= 90: 'A'}[True]

Shit tier Python code mate, you should stop writing any code...

None of it is my code bru.

By the way, I meant to write 'B' there on the 4th line

Good, because it's quite possibly the worst code I've ever seen.
My favorite part is the shebang partway through the code.

You're an insufferable faggot and nobody likes you.

kek, salty ass

>he can't into the spychadelics

Attached: trippy.png (471x750, 737K)

Shit thread OP.
Kill yourself

Attached: FizzBuzz :^).png (706x507, 55K)

Performance wise? No. For me personally, I just like knowing immediately what the type is, especially considering some types are interchangeable with each other when I may for example, explicitly want floats or ints. Reduces tons of headaches later on to just specify what it is.