while True:
num1 = int (input(' Введите первое число: '))
num2 = int (input(' Введите второе число: '))
v = int(input(
" Напиши, какую операцию ты хочешь сделать?\n"
" 1.Сложение\n"
" 2.Вычитание\n"
" 3.Деление\n"
" 4.Умножение\n"
" 5.Возвести в степень\n"
" 6.Деление с остатком\n "))
if v == 1:
a = str(num1 + num2)
f = 'сложения'
elif v == 2:
a = str(num1 - num2)
f = 'вычитания'
elif v == 3:
a = str(num1 // num2)
f = 'деления'
elif v == 4:
a = str(num1 * num2)
f = 'умножения'
elif v == 5:
a = str(num1 ** num2)
f = 'числа в степени'
elif v == 6:
a = str(num1 % num2)
f = 'деления с остатком'
else:
print(
" Вы выбрали не верный вариант\n"
" Начнем с начала"
)
continue
print (" Результат " + f + " = " + a)
again = input(" Продолжим? Y/N: ").lower()
if again == 'y':
continue
else:
break
def button_start_command():
global stop
if stop == True:
stop = False
mainProc()
def mainProc():
while 1:
pyautogui.move(150, 0, 0.5, pyautogui.easeOutQuad)
if stop == True:
break
pyautogui.move(0, 150, 0.5, pyautogui.easeOutQuad)
if stop == True:
break
pyautogui.move(-150, 0, 0.5, pyautogui.easeOutQuad)
if stop == True:
break
pyautogui.move(0, -150, 0.5, pyautogui.easeOutQuad)
if stop == True:
break
import ctypes
import py_win_keyboard_layout
def language():
u = ctypes.windll.LoadLibrary("user32.dll")
pf = getattr(u, "GetKeyboardLayout")
if hex(pf(0)) == '0x4190419':
py_win_keyboard_layout.change_foreground_window_keyboard_layout(0x04090409)
print(f"\n Раскладка клавиатуры была изменена на ENG")
print(f" Программа закроется, нужно будет запустить повторно")
print(f"\n\n Нажмите ENTER")
input()
os.system("taskkill /im python.exe /f")
os.system("taskkill /im python.exe /f")
else:
def Другая часть кода:
from random import randint
our_color = [[184, 197, 186],[162, 193, 166],[132, 183, 136],[88, 171, 95],[132, 183, 136],[109,176,115],[110,177,115]]
our_color = our_color[randint(0, 6)]
randint(0, 6) - так как 7 значений
if message.from_id == "баланс":
if "баланс" == message.text:
return f" Ваш баланс: {user.money} монет!"
from vk_api import VkApi
from vk_api.bot_longpoll import VkBotLongPoll, VkBotEventType
group_id = "*****"
TOKEN = "*****"
vk_session = VkApi(token=TOKEN)
longpoll = VkBotLongPoll(vk_session, group_id)
vk = vk_session.get_api()
def main():
for event in longpoll.listen():
if event.type == VkBotEventType.MESSAGE_NEW and event.from_chat:
chat_id = event.chat_id
print(chat_id)
if __name__ == '__main__':
main()
from vk_api.bot_longpoll import VkBotLongPoll, VkBotEventType
import vk_api
token = "********"
group_id = "********"
vk_session = vk_api.VkApi(token = token)
longpoll = VkBotLongPoll(vk_session, group_id)
vk = vk_session.get_api()
def main():
for event in longpoll.listen():
if event.type == VkBotEventType.MESSAGE_NEW and event.from_chat:
user_id = event.message.from_id
if "-" in str(user_id):
pass
else:
chat(event)
def chat(event):
user_id = event.message.from_id
chat_id = event.message.peer_id % 2000000000
user_info = vk.users.get(user_ids=user_id)
user_info = user_info[0]
first_name = user_info["first_name"]
id = event.chat_id
vk.messages.send(
message= (f"@id{user_id} ({first_name}), СООБЩЕНИЕ"),
chat_id=chat_id,
random_id= 0
)
if __name__ == '__main__':
main()