Discuss Scratch

mybearworld
Scratcher
1000+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

Rendangbike2 wrote:

anyone tell me what does this error mean? IndentationError: unindent does not match any outer level
Probably python?
Can you show the piece of code that did it?

Signatures are the only place where assets links still work.
Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

mybearworld wrote:

Rendangbike2 wrote:

Rendangbike2 wrote:

anyone tell me what does this error mean? IndentationError: unindent does not match any outer level
Probably python?
Can you show the piece of code that did it?
i know it's python but how could i show it to you?




Techno274721
Scratcher
43 posts

NewType, a new and easy programming language

Paste it to this in a quote box

this is a signiture make sure to click on my pfp
Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

Techno274721 wrote:

Paste it to this in a quote box
wut?




mybearworld
Scratcher
1000+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

Techno274721 wrote:

Paste it to this in a quote box
wut?
[code=py]
(the code)
[/code]

Signatures are the only place where assets links still work.
HPD1155
Scratcher
100+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

someone just change the settings too look more to the color?
what do you mean

i luv koenigseggs I is a hackr FYI
console.log(“hi); I’m an ethical hacker FYI
HPD1155
Scratcher
100+ posts

NewType, a new and easy programming language

Lets keep the other stuff we got button and dark mode

Last edited by HPD1155 (Jan. 20, 2021 14:08:43)


i luv koenigseggs I is a hackr FYI
console.log(“hi); I’m an ethical hacker FYI
HPD1155
Scratcher
100+ posts

NewType, a new and easy programming language

we can add a light mode button

i luv koenigseggs I is a hackr FYI
console.log(“hi); I’m an ethical hacker FYI
Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

HPD1155 wrote:

Rendangbike2 wrote:

someone just change the settings too look more to the color?
what do you mean
the settings button looks awful




Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

mybearworld wrote:

-schnipzel-
ans = []
while not "run" in ans:
	ans.append(input(">>> "))
del ans[-1]
for x in ans:
  	i = ans[ans.index(x)]
    if "say" in [i]:   
         y = len(i) - 1
	    print(i[5:y])




Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

mybearworld wrote:

-schnipzel-
ans = []
while not "run" in ans:
	ans.append(input(">>> "))
del ans[-1]
for x in ans:
  	i = ans[ans.index(x)]
    if "say" in [i]:   
         y = len(i) - 1
	    print(i[5:y])
i have fixed it but another problem arises.
inconsistent use of tabs and spaces in indentation
code:
ans = []
while not "run" in ans:
	ans.append(input(">>> "))
del ans[ - 1]
for x in ans:
    i = ans[ans.index(x)]
    if "say" in [i]:   
        y = len(i) - 1
	print(i[5:y])

Last edited by Rendangbike2 (Jan. 21, 2021 03:44:59)





mybearworld
Scratcher
1000+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

Rendangbike2 wrote:

mybearworld wrote:

-schnipzel-
ans = []
while not "run" in ans:
	ans.append(input(">>> "))
del ans[-1]
for x in ans:
  	i = ans[ans.index(x)]
    if "say" in [i]:   
         y = len(i) - 1
	    print(i[5:y])
i have fixed it but another problem arises.
inconsistent use of tabs and spaces in indentation
code:
ans = []
while not "run" in ans:
	ans.append(input(">>> "))
del ans[ - 1]
for x in ans:
    i = ans[ans.index(x)]
    if "say" in [i]:   
        y = len(i) - 1
	print(i[5:y])
That's because you inconsintently used tabs and spaces. This would be fixing it:
ans = []
while not "run" in ans:
    ans.append(input(">>> "))
del ans[ - 1]
for x in ans:
    i = ans[ans.index(x)]
    if "say" in [i]:   
        y = len(i) - 1
        print(i[5:y])
And also,
y = len(i) - 1
print(i[5:y])
That line of code… This would give the same result:
print(i[5:])

Signatures are the only place where assets links still work.
Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

mybearworld wrote:

That line of code… This would give the same result:
print(i[5:])
but i want it to print
Hello
not
Hello]




mybearworld
Scratcher
1000+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

mybearworld wrote:

That line of code… This would give the same result:
print(i[5:])
but i want it to print
Hello
not
Hello]
I see, it looks like I forgot once again how these stupid [:] things work. Sorry.

Last edited by mybearworld (Jan. 21, 2021 08:47:14)


Signatures are the only place where assets links still work.
Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

mybearworld wrote:

Rendangbike2 wrote:

mybearworld wrote:

That line of code… This would give the same result:
print(i[5:])
but i want it to print
Hello
not
Hello]
I see, it looks like I forgot once again how these stupid [:] things work. Sorry.
also the print function doesn't seem to work




HPD1155
Scratcher
100+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

HPD1155 wrote:

Rendangbike2 wrote:

someone just change the settings too look more to the color?
what do you mean
the settings button looks awful
fixed it now it blends in

i luv koenigseggs I is a hackr FYI
console.log(“hi); I’m an ethical hacker FYI
HPD1155
Scratcher
100+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

mybearworld wrote:

Rendangbike2 wrote:

mybearworld wrote:

That line of code… This would give the same result:
print(i[5:])
but i want it to print
Hello
not
Hello]
I see, it looks like I forgot once again how these stupid [:] things work. Sorry.
also the print function doesn't seem to work
yeah i see

i luv koenigseggs I is a hackr FYI
console.log(“hi); I’m an ethical hacker FYI
HPD1155
Scratcher
100+ posts

NewType, a new and easy programming language

lol im trying to fix this but it just wont wrk

i luv koenigseggs I is a hackr FYI
console.log(“hi); I’m an ethical hacker FYI
Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

HPD1155 wrote:

lol im trying to fix this but it just wont wrk
ok! blue safe




HPD1155
Scratcher
100+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

HPD1155 wrote:

lol im trying to fix this but it just wont wrk
ok! blue safe
wut

i luv koenigseggs I is a hackr FYI
console.log(“hi); I’m an ethical hacker FYI

Powered by DjangoBB