#Km91# to TenForward: Where Every Vulcan Knows Your Name • 3 months agoMachine learningsh.itjust.worksimagemessage-square42fedilinkarrow-up1672arrow-down111
arrow-up1661arrow-down1imageMachine learningsh.itjust.works#Km91# to TenForward: Where Every Vulcan Knows Your Name • 3 months agomessage-square42fedilink
minus-square@ArtVandelaylinkEnglish11•edit-23 months agodef hot(temp: int = 340): return temp That way Bev can define temp however she needs, but if Picard doesn’t specify, he gets his tea at a nice drinkable Kelvin temp.
minus-square@ArtVandelaylinkEnglish8•3 months agoPython is dynamically typed, so you could just go against the type hint like an animal. But yes, probably.
minus-square@[email protected]linkfedilink0•3 months agoIf you want to write Python like a caveman, then sure
minus-squareEcho Dotlinkfedilink2•3 months agoIf you’re just going to define a variable and then return it there’s no reason to do it in a function.
def hot(temp: int = 340): return temp
That way Bev can define temp however she needs, but if Picard doesn’t specify, he gets his tea at a nice drinkable Kelvin temp.
Shouldn’t that be a float?
Python is dynamically typed, so you could just go against the type hint like an animal. But yes, probably.
If you want to write Python like a caveman, then sure
If you’re just going to define a variable and then return it there’s no reason to do it in a function.