说明:This question has been asked earlier: 07000
Application configuration objects store metadata for an application. Some attributes can be configured in AppConfig subclasses. Others are set by Django and read-only.
但是,应用程序的元数据是什么意思?只限于 AppConfig metada <weixin_38685831> 上传 | 大小:58kb
说明:如下所示:
def translationCipher(msg,key):
result = [""]*key
for i in range(key):#把每一列元素按照顺序相加组成新的字符序列
pointer = i
while i<len(msg):
result[pointer]+=msg[i]
i+=key
return ''.join(result)
def main():
print translationCiph <weixin_38619613> 上传 | 大小:31kb