import requests
response = requests.get('https://www.pixiv.net/en/')
print(response.text)
import requests
response = requests.get('https://www.pixiv.net/en/')
with open('1.html','w') as file:
file.write(response.text)
import random
a = int(input("Введите ОТ скольки рандомизировать: "))
b = int(input("Введите ДО скольки рандомизировать: "))
if b > a:
c = random.randint(a, b)
else:
c = random.randint(b, a)
print ('Правильный порядок ОТ и ДО, а не ДО и ОТ как сделали вы! Но число всё равно сгенерировано')
print (c)
return sum([rec.amount for rec in self.records
if rec.date == today])
Можно ли его записать более понятно (например через if)?
import math
a, alpha, x = 10, 10, 10
y1 = math.log(abs(x**3)) + math.tan(alpha)-pow(math.e, a*(x**2)+x)
print(y1)
# OverflowError: (34, 'Result too large')
import math
import decimal
decimal.getcontext().prec = 100
a, alpha, x = 10, 10, 10
y1 = decimal.Decimal(math.log(decimal.Decimal(abs(decimal.Decimal(x)**decimal.Decimal(3))))) \
+ decimal.Decimal(math.tan(decimal.Decimal(alpha))) \
- decimal.Decimal(pow(decimal.Decimal(math.e), decimal.Decimal(a)*(decimal.Decimal(x)**decimal.Decimal(2))+decimal.Decimal(x)))
print(y1)
# -4.339370400623091759291109148627508614055728677394889807059531826625028640984354352252576981241604834E+438
Как сменить язык на pyowm в 2021?Так же, как и 50 лет назад - то есть с помощью документации.
from pyowm.owm import OWM
owm = OWM('d4bfb9a2a08c4fd186672544bb41491c')
languages = owm.supported_languages
print(languages)
>>>['af', 'al', 'ar', 'az', 'bg', 'ca', 'cz', 'da', 'de', 'el', 'en', 'es', 'eu', 'fa', 'fi', 'fr', 'gl', 'he', 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kr', 'la', 'lt', 'mk', 'nl', 'no', 'pl', 'pt', 'pt_br', 'ro', 'ru', 'se', 'sk', 'sl', 'sp', 'sr', 'sv', 'th', 'tr', 'ua', 'uk', 'vi', 'zh_cn', 'zh_tw', 'zu']
from pyowm.owm import OWM
owm = OWM('d4bfb9a2a08c4fd186672544bb41491c')
config_dict = owm.configuration
print(config_dict)
>>>{'subscription_type': <pyowm.commons.databoxes.SubscriptionType - name=free subdomain=api paid=False>, 'language': 'en', 'connection': {'use_ssl': True, 'verify_ssl_certs': True, 'use_proxy': False, 'timeout_secs': 5}, 'proxies': {'http': 'http://user:pass@host:port', 'https': 'socks5://user:pass@host:port'}}
from pyowm.owm import OWM
from pyowm.utils.config import get_default_config
config_dict = get_default_config()
config_dict['language'] = 'ru'
owm = OWM('d4bfb9a2a08c4fd186672544bb41491c', config_dict)
Я новичок в python
if change_index <= len(alphabet): result_text += alphabet[change_index]
In [1]: import importlib
In [2]: requests.__version__
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-2-37d800a179a9> in <module>
----> 1 requests.__version__
NameError: name 'requests' is not defined
In [3]: requests = importlib.import_module('requests')
In [4]: requests.__version__
Out[4]: '2.22.0'
pip install -r requirements.txt
pip install .