This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Добрый вечер, не подскажете почему здесь ругается на четвёртую строку, спасибо! | |
import tkinter as tk | |
def plus(): | |
x = ( int(a.get()) * int(a1.get()) ) + ( int(b.get()) * int(b1.get()) ) + ( int(c.get()) * int(c1.get() ) + ( int(d.get() * int(d1.get()) ) + ( int(e.get()) * int(e1.get()) ) + ( int(f.get()) * int(f1.get()) ) + ( int(g.get()) * int(g1.get()) ) + ( int(h.get()) * int(h1.get()) ) | |
result.insert(0, str(x)) | |
def delet(): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> # https://docs.sqlalchemy.org/en/14/orm/self_referential.html | |
>>> | |
>>> import sqlalchemy as sa, sqlalchemy.orm as orm | |
>>> | |
>>> Base = orm.declarative_base() | |
>>> | |
>>> class User(Base): | |
... "Model" | |
... __tablename__ = 'users' | |
... id = sa.Column(sa.Integer, primary_key=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#f1 x y | |
0.00000e+00 1.50000e+01 | |
1.20000e-01 1.11170e+01 | |
2.40000e-01 8.23920e+00 | |
3.60000e-01 6.10636e+00 | |
4.80000e-01 4.52563e+00 | |
6.00000e-01 3.35410e+00 | |
7.20000e-01 2.48584e+00 | |
8.40000e-01 1.84234e+00 | |
9.60000e-01 1.36542e+00 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import random | |
import string | |
import time | |
import ctypes | |
os.system('COLOR 0a') | |
try: # Check if the requrements have been installed | |
from discord_webhook import DiscordWebhook # Try to import discord_webhook | |
except ImportError: # If it chould not be installed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
voc1=""" | |
"o'rik, zardoli",АБРИКОС | |
o'rikzor,АБРИКОСОВЫЙ САД | |
"mutlaqo, tubda",АБСОЛЮТНО | |
jimjitlik,АБСОЛЮТНОЕ БЕЗМОЛВИЕ | |
musaffo,АБСОЛЮТНО ЧИСТЫЙ | |
"absolyut, mutlaq",АБСОЛЮТНЫЙ | |
abstraktlik,АБСТРАКТНОСТЬ | |
"abstrakt, mavhum",АБСТРАКТНЫЙ | |
ma'nosiz,АБСУРДНЫЙ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import sqlite3 | |
import menu | |
import settings | |
import functions as func | |
import telebot | |
from telebot import types | |
import time | |
import datetime |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import sqlite3 | |
import menu | |
import settings | |
import functions as func | |
import telebot | |
from telebot import types | |
import time | |
import datetime |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from . import regular_commands | |
from . import bank | |
from . import profile | |
from . import marketplace | |
from . import ban_ruletka | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import random | |
import sqlite3 | |
import re | |
from aiogram import types | |
from aiogram.types import ParseMode, InlineKeyboardMarkup, InlineKeyboardButton | |
from misc import dp, bot, allow_chats, group_error_msg | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import random | |
import sqlite3 | |
import re | |
from aiogram import types | |
from aiogram.types import ParseMode, InlineKeyboardMarkup, InlineKeyboardButton | |
from misc import dp, bot, allow_chats, group_error_msg | |
from datetime import datetime |