not_IO@lemmy.blahaj.zone to Comic Strips@lemmy.worldEnglish · 1 month agodidn't think solemmy.blahaj.zoneimagemessage-square188linkfedilinkarrow-up11.25Kfile-textcross-posted to: [email protected][email protected]
arrow-up11.25Kimagedidn't think solemmy.blahaj.zonenot_IO@lemmy.blahaj.zone to Comic Strips@lemmy.worldEnglish · 1 month agomessage-square188linkfedilinkfile-textcross-posted to: [email protected][email protected]
minus-squareslacktoid@lemmy.mllinkfedilinkEnglisharrow-up3·1 month agoYes to see the people who call themselves coders but can’t write hello world in Python without asking Claude
minus-squareAmyAye@nord.publinkfedilinkEnglisharrow-up1·30 days agomessage1 = “Hello” message2 = “World” message3 = “!” combined = f"{message1} {message2}{message3}" print(combined)
minus-squaresobchak@programming.devlinkfedilinkarrow-up4·30 days agoimport anthropic client = anthropic.Anthropic() message = client.messages.create( model='claude-fable-5', max_tokens=128000, messages=[ {'role': 'user', 'content': 'say "Hello World"'} ], ) print(message.content[0].text)
Yes to see the people who call themselves coders but can’t write hello world in Python without asking Claude
message1 = “Hello” message2 = “World” message3 = “!”
combined = f"{message1} {message2}{message3}"
print(combined)
import anthropic client = anthropic.Anthropic() message = client.messages.create( model='claude-fable-5', max_tokens=128000, messages=[ {'role': 'user', 'content': 'say "Hello World"'} ], ) print(message.content[0].text)Ya fucked up A-A-ron