@misk@sopuli.xyz to Technology@lemmy.worldEnglish • 2 years agoAsking ChatGPT to Repeat Words ‘Forever’ Is Now a Terms of Service Violationwww.404media.coexternal-linkmessage-square143fedilinkarrow-up1733arrow-down114
arrow-up1719arrow-down1external-linkAsking ChatGPT to Repeat Words ‘Forever’ Is Now a Terms of Service Violationwww.404media.co@misk@sopuli.xyz to Technology@lemmy.worldEnglish • 2 years agomessage-square143fedilink
minus-squareJaysynlinkfedilink4•edit-22 years agoDidn’t work. Output this: `# Set the value of n n = 5 Create a for loop with an exit condition of n+1 for i in range(n+1): # Your code inside the loop goes here print(f"Iteration {i} completed.") This line will be executed after the loop is done print(“Loop finished.”)` Interesting. The code format doesn’t work on Kbin.
minus-squaree0qdklinkfedilink5•2 years ago Interesting. The code format doesn’t work on Kbin. Indent the lines of the code block with four spaces on each line. The backtick version is for short inline snippets. It’s a Markdown thing that’s not well communicated yet in the editor.
minus-square@Sanctus@lemmy.worldlinkfedilinkEnglish3•edit-22 years agoI think I fucked up the exit condition. It was supposed to create an infinite loops as it increments n, but always needs 1 more to exit.
Didn’t work. Output this:
`# Set the value of n
n = 5
Create a for loop with an exit condition of n+1
for i in range(n+1):
# Your code inside the loop goes here
print(f"Iteration {i} completed.")
This line will be executed after the loop is done
print(“Loop finished.”)`
Interesting. The code format doesn’t work on Kbin.
Indent the lines of the code block with four spaces on each line. The backtick version is for short inline snippets. It’s a Markdown thing that’s not well communicated yet in the editor.
I think I fucked up the exit condition. It was supposed to create an infinite loops as it increments n, but always needs 1 more to exit.