R3
Size: a a a
R3
B
django-admin startproject botpython manage.py startapp comparebotpython manage.py migrateR3
T
B
django-admin startproject botpython manage.py startapp comparebotpython manage.py migrate127.0.0.1:8000 появляется окно приветствия о запуске ДжангоT
T
VA
Ď
R3
python3
string = 'Hello world!'
print(string)
s_encoded = string.encode('utf8')
print(s_encoded)
s_decoded = s_encoded.decode('utf8')
print(s_decoded)
Hello world!
b'Hello world!'
Hello world!
B
R3
Ď

T
python3
string = 'Hello world!'
print(string)
s_encoded = string.encode('utf8')
print(s_encoded)
s_decoded = s_encoded.decode('utf8')
print(s_decoded)
Hello world!
b'Hello world!'
Hello world!
R3
B


R3
T