Skip to content
Sign UpLog In
Profile icon

TutorialWarrior 9776

@Kirit0
I like to code in python and like to code with people ^-^
Repls
Community
Kirit0
Kirit0
shared a Post
2 years ago
My First Official Website!!
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
CheckThisOut!!
Python
MrVoo
MrVoo
What does the link go to?2 years ago
CoderGautamYT
CoderGautamYT
The website looked really cool but for some reason I couldn't download, i got this error. image2 years ago
Kirit0
Kirit0
shared a Post
2 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
A Website
HTML, CSS, JS
ANDREWVOSS
ANDREWVOSS
I wish people would make more tutorials like this for other languages, too.2 years ago
InvisibleOne
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
ch1ck3n
ch1ck3n
the contrast of the code snippets is bad but nice!!2 years ago
Kirit0
Kirit0
shared a Post
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
Website3.0
Python
Baconman321
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
icodeletion
icodeletion
You need to use the repl database2 years ago
Kirit0
Kirit0
shared a Post
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
Among Us Story
Python
Kirit0
Kirit0
shared a Post
2 years ago
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
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
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
Kirit0
Kirit0
shared a Post
2 years ago
Here is some free code I made out of python! Please enjoy, and remember to upvote! ^-^
Random Unfinished Code
Python
gavinwinsagain
gavinwinsagain
Lfmao2 years ago
gavinwinsagain
gavinwinsagain
Epilepsy2 years ago
isaiah08
isaiah08
wow, nice!2 years ago
Kirit0
Kirit0
shared a Post
2 years ago
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
Discord bot
Python
littlepenguin
littlepenguin
Cool!2 years ago
Kirit0
Kirit0
shared a Post
2 years ago
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
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
Kirit0
Kirit0
shared a Post
2 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
Login in Python
Python
Glare
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
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
codeflip
codeflip
It works. 2 years ago