Brendan23
@Brendan23
Hello, If you run the repl it works but the same line at the top of the console doesn't change! how can I change or remove that?
also, if you can, how
Python
MrVoo To remove/shorten the delay, edit line 11. Also I would suggest redoing it entirely and have something like this:
from sys import stdout
from random import randint
from time import sleep
while True:
print('|'+' '*randint(1,30), end='')
stdout.flush()
sleep(0.005)
`2 years ago
If you run the repl, make 2 or more food, then do serve food, it will only do one of them. why is that, and how do I solve it?
Python
First, I know what the list index out of range error is. To see this error, run the repl, do check orders, then go to make food and make one of the f
Python
Kai_Justice I suggest just enumerating the list, it'll make your code a bit cleaner and clear up any index related confusion.
Lines 130-137:
Instead of looking at the size of the "orders_list" list and indexing it this will automatically index and assign the value to the variable "thing"
for thing in orders_list:
if thing in orders_list:
correct_ords+=1
orders_list.remove(thing)
done_things.remove(thing)
orders[thing]-=1
done_thingss[thing]-=1
2 years ago
If You Run The Repl, do make food, wait 20 sec., and serve food, it will give a list index out of range error, why is that?
Python
ruiwenge2 that is because the number you used to get an element in the list is out of range, meaning there is no element with that index.2 years ago
if you run the repl, input random letters(has to be more than 1), it should be like https://replit.com/@ZarmDev/Intro
but instead it prints on multipl
Python
JBloves27 This could be happening from the second print in the for loops.
It prints letters_lower[i], but because it doesn't have end="", I think it may be the reason for this.
Hope this helps!2 years ago
if you run the repl, there is a space between the ‖ and the green highlight in the beginning and the end. how can I remove that space?
Python
OldWizard209 You just need to change 60 to 59 on line 11:
for i in range(59):
emt += ' '
Output:
image2 years ago
Coder100 use sep=''
you see, with each argument, python adds a space in between, so you can remove that:
print('‖','\033[0;0;42m'+get,'\033[0;0;0m'+emt,'‖', sep = '')
line 152 years ago
LukeWright instead of
print('‖','\033[0;0;42m'+get,'\033[0;0;0m'+emt,'‖')
do
print('‖'+'\033[0;0;42m'+get,'\033[0;0;0m'+emt+'‖')
`2 years ago
So the problem is if you run the repl and input an upper case A, B, C, and D or multiple, (only a, b, c, and d work so far) then input 2/the shady opt
Python
JBloves27 You could add the .lower() to the input. So like this:
idk = input("input: ").lower()
Hope this helps!2 years ago
I can't figure out how to save where the person clicked on to a variable. I know how to print it though. take a look at the repl and scroll to the bot
Python
Coder100 You can use a database.
from replit import db
my_var = None
if 'myvar' in db: myvar = db['my_var']
do magic
save the variable!
db['myvar'] = myvar
`2 years ago
lsikora Try this...
with open('doremi.txt', 'w') as f:
f.write('Doe, a deer, a female deer\n')
f.write('Ray, a drop of golden sun\n')
The write() function takes a string and puts that content into the file stream. Although we don't store it, the write() function returns the number of characters it just entered i.e. the length of the input string.2 years ago
hello person who's reading this. my question is, first, how do I make a function or something that makes it so that when the "player" clicks and/or h
EuanTH Here's a link to help with the cursor problem, stackoverflow
In summary, it talks about the canvas and binding it to a function, which you can use to bind the mouse position.
For the three coloured circles, you can make 3 different turtles that will draw each of the circles. Each would check if the player is over the circle, and if the player has clicked.
I would recommend to solve this problem in PyGame, it might take some time to learn but it's a lot easier to write applications like this wi2 years ago
best way to clear screen without flicker in python?
Credits
@Brendan23
How To
All you have to do is input your text and choose the color you want it to be. pretty simple.
About
The Quick version:
One d
Python
anyone need anything to be animated(not to long). come to me. spoiler: it will be in pixel form.
so if you type in more than one a when you run the repl, it will print one a and another below it. is there a way to get them side-by-side?
Coder100 not to mention it also aligns the text beautifully! (Probably)
https://repl.it/@Coder100/WryImaginaryConfiguration-eouae-ou-eoaueao-ue#main.py
yay!2 years ago
Coder100 Nope, you can't do this simply with yourself.
Try dis:
def sidebyside(*args):
print('\t'.join(args))
And also:
sidebyside("hi", "there")
you might be thinking bruh isn't this the most obvious thing
and you are correct, that is what you have to do in something as limited as a terminal.2 years ago
Brendan23 @LeoXu2 @RYANTADIPARTHI so. what I want to do is print more than one multi-line letters next to each other. make sense? for example, if you run the repl and type in multiple a's then it will print one on top of another. I don't want that. I want it side by side.2 years ago
sorry to leave you on a cliffhanger. is there a way to print multiple ASCII letters in a row? I can't figure out how to.
About
this ASCII animation was made by Andreas Freise. you can check out his site with this link: http://www.ascii-art.de/
How To
all you have to do
Python
Wilke000 Don't post things that aren't yours. I've done that, and you don't wanna know what happened2 years ago
Question
so if you run the "all aboard!" you can see that the cursor moves around and it is choppy. is there a way to change it?(don't say "don't us
Python
Ganesha1 Flush the screen constantly or get hacker or learn another lang.
Also, file reading does take a second so you may want to keep all the frames in one file and just load them into an array for easier access.2 years ago
Credits
@Brendan23
@plant3jyyehejy
Object of the game
Get lots of students and become the best school in the world.
Closing
Suggestions are recommen
Python
ToxicHaste This is a good start Brendan, I would now suggest having more friends help out with bigger games, I've seen Snake game, Fortnite even Skyrim in here2 years ago
uggg! I have another problem now but its simple. its the IndentationError: unindent does not match any outer indentation level error. I've gotten thi
Python
xxpertHacker Just use a code formatter, problem solved,
Actually no, just stop using Python, problem solved.2 years ago
Brendan23 @RYANTADIPARTHI @SamuelPKuld finally! I figured it out!! I just deleted all of it and rewrote it.2 years ago
so I (though) I was done with my (not so good) game when this error popped up:
File "", line 1
(user funding['funding'])
^
SyntaxErro
Python
robowolf On line 128 either choose user['funding'] or funding['funding']. You can't have user funding['funding'].2 years ago