TutorialWarrior 9776
@Kirit0
I like to code in python and like to code with people ^-^
Thank you to the people seeing this post! I want to show you this amazing website I made! Took me a few weeks, but I got it done, using Flask framewor
Python
CoderGautamYT The website looked really cool but for some reason I couldn't download, i got this error.
image2 years ago
Hey guys, I made a website for people who would like to learn python! It may not be the best, but I feel it could be useful some. Please let me know h
HTML, CSS, JS
InvisibleOne Like the chicken said, it's kind of hard (especially for someone who's as blind as I am) to see the code snippets because the color is very similar to the background color, maybe give the text a background color or change it to a color with more contrast, such as a darker red or something.2 years ago
Sooooo... I may have tried and create my first website. kewl. Buuuuuuuut, I may ALSO be stuck on how to save data. For like logins and stuff. Do you g
Python
Baconman321 You need to utilize a database for this. Replit DB is a good place to start, but I wouldn't recommend it in the long run. Writing to a JSON file is a good idea, but wouldn't be the best for sensitive data. I recommend you try replit DB first since it's easily accessible in Python.2 years ago
Hey guys, I was ganna make you all an among us game when the game was still popular. I spent many hours on the code you see here, but I just dont have
Python
Hello! I have been working on designing a nice text based game because I got bored. I wanted to make the text pause in between each character, and I l
Bookie0 hi,
for the typewriter effect, you can do this:
import sys, os
import time
st = 0.04 #change to what you want
def sp(str):
for letter in str:
sys.stdout.write(letter)
sys.stdout.flush()
time.sleep(st)
print()
and for input, use this
input(sp("hello enter your name"))
however, when you use this, it will do something like this:
Screen Shot 2020-10-15 at 12.26.49 PM
then you can write your name and press enter and everything will be normal.
Another solution would be to just 2 years ago
Coder100 like slowprint? Don't reinvent the wheel:
import time
def typewriterinput(text, delay=0.1):
for letter in text:
print(letter, end='', flush=True)
time.sleep(delay)
return input()
print(typewriter("I'm being typed at a rate of 0.1 seconds: "))
`2 years ago
Here is some free code I made out of python! Please enjoy, and remember to upvote! ^-^
Python
Here is some code that can will get a discord bot up and running. All you gatta do is replace 'discord bot secret' to the actual token. Then your set
Python
Hello, im looking to be in part of the new beta feature, "Teams". i was hoping maybe some of you could comment an invite link for me to join? I am try
MocaCDeveloper Hi!
I see you want to join someones team. I'd recommend not posting a question like this on the ask board asking others to invite you to there team. It usually doesn't work like that.
Why don't you
Create a new team, then post a question on the ask board asking if someone would want to join. Also, you don't need a team to learn Python lol. Python is probably the easiest language to learn..literally.
While it is used by big tech companies, for databases, security systems etc..the complexity of2 years ago
Hey, could I have some help on having this tested. I'm not sure how it would work out in public, so please tell me if you can read the files or if it
Python
Glare I have a suggestion! When user enters an invalid email, you should repeatedly ask them for a new email. I think it's better than just bringing them back to the "Type 1 to sign up" page. Should be done easily with a while loop. Very nice job though :)2 years ago
Leroy01010 nice!
>(also [email protected] is a real email service)
>you need to connect different servers for it to work
>i know where you got the chat part from....2 years ago