MESYETI
@MesyetiIsTaken
cool. discord: yeti#0904 e-mail: [email protected]
I've been getting very bored recently so I decided to start working an ai thing? This thing isn't done yet.. More will be added soon.
Right now it's o
SixBeeps For lines 17 and 19, lower needs to have () at the end. Otherwise, you're not comparing the output of the function, but the function itself.2 years ago
Bookie0 I think you called the function moveSel() Before you defined, so maybe define before you call it
29492761-018E-4692-BA44-34F5F2E6BE0E3 years ago
My Batch interpreter won't print the whole string, it always leaves out a letter at the end
Python
ChezCoder replace print(codeline[5:-1]) with print(codeline[5:]). 5: means to slice the string to the end of the string while 5:-1 leaves out the last character (because of the zero based counting system).3 years ago
How do I print a certain item in a list?
Edit: in python o_o I forgot to put that
CodingCactus if you look at the string manipulation in this, the same applies for elements in a list
https://how-to-python.codingcactus.repl.co/3 years ago
This is an update to my Pava language :)
You can see the changes in change.txt and the credits in credits.txt
Please tell me if I missed out anythin
Python
MesyetiIsTaken If anybody is wondering, the infinite counting bug was made when some body types c(-1) you can go to my Pava 0.4 repl and type c(-1) to see the infinite counting bug3 years ago
This is just a function
This has a new count() command. Inside of the brackets, type a number and this will count to that number!
Try typing count(1
Python
This is a random thing I decided to make. This is a BETA, don't expect anything big. I've not done alot of commands, but if you want you can make a sm
Python
gregory54 I must say i loved reading your blog. It absolutely was well authored and an easy task to undertand. Unlike additional blogs I have read which are very not tht good. I also found your posts very interesting. In reality after reading, I had to go show it to my friend and he ejoyed it as well! gas strut ball stud5 months ago
gregory54 This is the type of information I’ve long been trying to find. Thank you for writing this information. เว็บแทงบอล สเต็ปออนไลน์5 months ago
AmazingMech2418 So, is this supposed to be sort of like an implementation of Java in Python?3 years ago
Out of curiosity is there a command to clear the screen in python?
Kopamed @MesyetiIsTaken
Yes. This is the best one. The others take wayyyy to long to work so here it is:
import time
def cler():
print("\x1b[2J\x1b[H",end="")
print("I will be gone soon")
time.sleep(2)
cler()
3 years ago
Bookie0 os.system(‘clear’)
But first import os
Also what I like to do is put that in a function that I call clear():
def clear():
os.system(‘clear’)
So that it’s easier to call it3 years ago
How do I run another python file?
I'm trying to get the def function in pava.py working in main.py
Python
WaruchJiratanak I think the problem is 'pava' is not a package
But I'm not completely sure3 years ago
SixBeeps Two things:
Class names should match their file names. Keep the class name "Main" in this case.
It's printLN, not printIN (everything's lowerhave, though)3 years ago
Is there a way I can put music in JavaScript code?
I want the youareanidiot music in the script area of yaai.html
It needs to start playing right at
yay i finally made something in javascript.
The basics of javascript are fairly easy, which I didn't excpet