Forwarded from Deleted Account
Можно писать Скрипты на Python?
Если можно, дайте пример, простейший.
Если можно, дайте пример, простейший.
Forwarded from Deleted Account
Нет.
Типо чтобы игрок, человек, прыгал при нажатии SPACE
Типо чтобы игрок, человек, прыгал при нажатии SPACE
Forwarded from Гор
ребята, подскажите, пожалуйста. jupiter notebook это как заменя для virtual env?
Forwarded from Deleted Account
Я хочу тетрис сделать на Android.
Возможно сделать в Unity с помощью Python?
Возможно сделать в Unity с помощью Python?
Forwarded from Deleted Account
🖐 A problem I am facing with python code is I am running a Twitter 🐦 tweepy based code on pydroid, after few minute, the app resets itself and I am left with empty app 📲, the problem is with app Or the phone Or my code? #help?
Forwarded from Deleted Account
try using normal computer to run your app
Forwarded from Deleted Account
Used the normal computer, works fine but i can't keep the terminal open for long durations, but as mobiles are cheap and can stay awake for longer Durations, i am trying to figure out a way run code on them.. Any other app to run pip command and the python code?
Forwarded from Deleted Account
я ип, как мне нанять фрилансера из индии и переводить зп со счета ип?
Forwarded from Zart
#!/usr/bin/env python3
import os
G = '''"$@B%8&WM#*oahkbdpqwmZO0QLCJUYXzcvunxrjft/\|()1{}[]?-_+~<>i!lI;:,"^`'. "'''
if hasattr(os, 'get_terminal_size'):
tsize = os.get_terminal_size
else:
tsize = lambda:(int(os.getenv('COLUMNS', 80)), int(os.getenv('LINES', 24)))
def m(w, h, z):
out = ''
xz, yz = z, z * 6 / 5
for y in range(h):
yy = yz * (y / h - .5) - 1
for x in range(w):
xx = xz * (x / w - .5)
z, c = 0j, complex(xx, yy)
for r in G:
z = z**2 + c
if abs(z.real) > 2 or abs(z.imag) > 2:
out += r
break
else:
out += ' '
return out
if __name__ == '__main__':
z = 1
while 1:
w, h = tsize()
print(m(w, h-1, z))
z *= 0.97