## page was renamed from Main/Python/1/Answers
<<TableOfContents>>

Решения могуть быть совсем разными. Вот некоторые варианты:

== Примеры ответов ==

=== 1 ===
{{{#!python
>>> import math
>>> print("%.3f" % math.radians(10))
0.175
}}}

=== 2 ===
{{{#!python
>>> beans = 2 ** 64 - 1
>>> bean_grams = 0.062
>>> print("%3.3e kg" % (beans * bean_grams / 1000))
1.144e+15 kg
}}}

Зная, что описание % для строк где-то есть, я тыкал так и нашёл про %e: [[http://docs.python.org|docs.python.org]] -> [[http://docs.python.org/library/index.html|Library reference]] -> [[http://docs.python.org/library/stdtypes.html#sequence-types-str-unicode-list-tuple-buffer-xrange|Sequence types: ... str ...]] -> [[http://docs.python.org/library/stdtypes.html#string-methods|String methods]] -> [[http://docs.python.org/library/stdtypes.html#string-formatting|String formatting operations]]. Так как интересен только порядок, то "floating point exponential format" -- это то, что нужно.

=== 3 ===
{{{#!python
>>> figures = "RNBQKBNR" + "\n"
>>> pawns = "p" * 8 + "\n"
>>> line1 = "  ++" * 4 + "\n"
>>> line2 = "++  " * 4 + "\n"
>>> white = " ".join(pawns) + line1 + " ".join(figures) + line2
>>> black = "#".join(figures) + line1 + "#".join(pawns) + line2
>>> print(black + (line1 * 2 + line2 * 2) * 2 + white)
R#N#B#Q#K#B#N#R#
  ++  ++  ++  ++
p#p#p#p#p#p#p#p#
++  ++  ++  ++  
  ++  ++  ++  ++
  ++  ++  ++  ++
++  ++  ++  ++  
++  ++  ++  ++  
  ++  ++  ++  ++
  ++  ++  ++  ++
++  ++  ++  ++  
++  ++  ++  ++  
p p p p p p p p 
  ++  ++  ++  ++
R N B Q K B N R 
++  ++  ++  ++  
}}}

Тут я использовал хитрую штуку {{{.join}}}, которую некоторые могли случайно заметить в {{{help(str)}}}.

{{{#!python
>>> help(str.join)
Help on method_descriptor:

join(...)
    S.join(sequence) -> string
    
    Return a string which is the concatenation of the strings in the
    sequence.  The separator between elements is S.
}}}

Т.е. "разделитель".join("что-нибудь") сделает строку, в которой между каждыми двумя буквами в "что-нибудь" стоит "разделитель". В некоторых случаях это очень полезная штука.

Некоторые поступали так:
{{{#!python
>>> w = "w%s" * 8
>>> white = w % ('R', 'N', 'B', 'Q', 'K', 'B', 'N', 'R')
}}}

Ещё один подход был в том, чтобы различать чёрных и белых регистром букв:
{{{#!python
>>> black = "rnbqkbnr"
>>> white = black.upper()
>>> print(white)
RNBQKBNR
}}}

До метода {{{upper}}} можно дотянуться разными путями. Как я показал тут: "строка".upper() даёт "СТРОКА". Догадываясь о существовании такого метода, но не зная, где его искать, можно было посмотреть в [[http://docs.python.org/library/string.html|документацию по подулю string]] и найти такое:

{{{#!python
>>> import string
>>> white = string.upper(black)
}}}

Конечно, можно было бы обойтись и попросту одним вызовом print и ничего не выдумывать.

=== 4 ===

{{{#!python
>>> "Pbatengf! Unir lbh thrffrq gung lbh pna qrpbqr vg yvxr k.qrpbqr('ebg13')? Gur qbpf ner urer: uggc://qbpf.clguba.bet/yvoenel/fgqglcrf.ugzy#fge.rapbqr naq frr Fgnaqneq Rapbqvatf gurer.".decode("rot13")
u"Congrats! Have you guessed that you can decode it like x.decode('rot13')? The docs are here: http://docs.python.org/library/stdtypes.html#str.encode and see Standard Encodings there."
}}}

Основная подсказка (которую я озвучивал тем, кто при мне дошёл до этой задачи) состояла в том, что питон прямо сразу умеет расшифровывать код Цезаря. Первая попытка поиска: [[http://docs.python.org/|docs.python.org]] -> [[http://docs.python.org/library/index.html|Library Reference]] -> [[http://docs.python.org/library/stdtypes.html#sequence-types-str-unicode-list-tuple-buffer-xrange|Sequence types ... str ...]] -> [[http://docs.python.org/library/stdtypes.html#string-methods|String methods]] -> ищем слово decode или encode -> [[http://docs.python.org/library/codecs.html#standard-encodings|Standard encodings]] -> ищем слово caesar. А дальше вопрос в том, чтобы разобраться, как же этим пользоваться :)

Альтернативный метод:

{{{#!python
>>> import string
>>> a = "abcdefghijklm"
>>> A = a.upper()
>>> b = "nopqrstuvwxyz"
>>> B = b.upper()
>>> caesar = string.maketrans(a + A + b + B, b + B + a + A)
>>> cipher = "Pbatengf! Unir lbh thrffrq gung lbh pna qrpbqr vg yvxrk.qrpbqr('ebg13')? Gur qbpf ner urer: uggc://qbpf.clguba.bet/yvoenel/fgqglcrf.ugzy#fge.rapbqr naq frr Fgnaqneq Rapbqvatf gurer."
>>> print(cipher.translate(caesar))
Congrats! Have you guessed that you can decode it likex.decode('rot13')? The docs are here: http://docs.python.org/library/stdtypes.html#str.encode and see Standard Encodings there.
}}}

=== 5 ===

{{{#!python
>>> print("Abj sbe gur ynfg gnfx. Ortva jvgu >>> cqo_pbqr = '1z5k' (gurer znl or bgure fgevat). Cevag bhg 2-aq naq 3-eq fgevatf bs CQO fgehpgher vqragvsvrq ol guvf pbqr. Fgehpherf znl or qbjaybnqrq sebz: sgc://sgc.jjcqo.bet/cho/cqo/qngn/fgehpgherf/nyy/cqo/cqo{cqo_pbqr}.rag.tm (Uvag: frr qbpf sbe zbqhyrf heyyvo2 naq tmvc).".decode('rot13'))
Now for the last task. Begin with >>> pdb_code = '1m5x' (there may be other string). Print out 2-nd and 3-rd strings of PDB structure identified by this code. Strucures may be downloaded from: ftp://ftp.wwpdb.org/pub/pdb/data/structures/all/pdb/pdb{pdb_code}.ent.gz (Hint: see docs for modules urllib2 and gzip).
}}}

Первым делом читаем документацию по urllib2 и gzip. Проще на сайте, но можно и так:
{{{#!python
>>> import gzip
>>> help(gzip)
}}}

Получается (всё равно совершенно нетривиально):
{{{#!python
>>> pdb_code = '1m5x'
>>> import urllib2
>>> import gzip
>>> import StringIO
>>> url = "ftp://ftp.wwpdb.org/pub/pdb/data/structures/all/pdb/pdb%s.ent.gz" % pdb_code
>>> gzipped = urllib2.urlopen(url).read()
>>> pdb = gzip.GzipFile(fileobj=StringIO.StringIO(gzipped)).read()
>>> lines = pdb.split("\n")[1:3]
>>> print("\n".join(lines))
TITLE     CRYSTAL STRUCTURE OF THE HOMING ENDONUCLEASE I-MSOI BOUND             
TITLE    2 TO ITS DNA SUBSTRATE                                                 
}}}