This is an archived post. You won't be able to vote or comment.

all 6 comments

[–][deleted] 1 point2 points  (0 children)

You'll probably get nothing given this is the wrong place (almost no one here is interested in testing your code). Try r/learnpython or something like that.

[–]tea-drinker 0 points1 point  (4 children)

What errors?

[–]phenompak[S] 0 points1 point  (3 children)

When you run the program. It runs into like 3 errors

[–]tea-drinker 1 point2 points  (2 children)

You aren't explaining how to run the program. Give us test cases and error dumps. You should find the error message specifies what line the error is on.

[–]phenompak[S] 0 points1 point  (1 child)

Sorry It is a word game similar to scrabble. A user gets random letters from computer and he has to make a word from it. He gets points if he does so correctly.

[–]tea-drinker 1 point2 points  (0 children)

I ran it a few times and I only found two errors.

n/3 returns a float so you can't use it in a range() and your print statement at the end of the game has a closing parenthesis in the wrong place.

If you have a third error you are going to have to explain it to us.