@app.route(‘/user/<name>’) #动态路由 def user(name): return render_template(‘user.html’,name=name) | 其中网页文件user.html的部分代码如下: <body> {%if name == ‘admin’%} <hl>Hello,Boss!</hl> {%else%} <hl>Hello,{{name|capitalize}}!</hl> {%endif%} </body> |
运行程序后,在浏览器输入如下网址://127.0.0.1:5000/user/admin,则网页显示的内容是( )
k=int(input(“输入一个四位数:”))
y=k%100
if :
print(“符合”)
else:
print(“不符合”)
划线处应填入的代码是( )
mylist =[1, 2, 5, 6]
ans = 0;c = 0
for i in range(1,4):
for x in mylist:
if x % i == 0:
ans += x
c += 1
print(ans,c)
执行后输出的结果是( )
s='t1Hr2a3'
s1='' ; s2=''; i = 0
while i < len(s):
if '0'<=s[i]<='9':
s1 = s1 + s[i]
elif 'a'<=s[i]<='z':
s2 = s[i] + s2
i = i + 1
ans = s2 + s1
print(ans)
程序执行后,输出的结果是( )
其中顺序码表示在同一地址码所标识的区域范围内,对同年、同月、同日出生的人编定的顺序号,顺序码的奇数分配给男性,偶数分配给女性。校验码是根据前面十七位数字码计算出来的检验码。
示例1:对于id_num='330281201010310640',返回(2010-10-31, 女)
示例2:对于id_num='330281200605302813',返回(2006-05-30, 男)
现在设计一个自定义函数,根据输入的身份证号,输出该公民的出生日期和性别。
以下代码能够实现上述功能。
def id_Inf(id_num):
birthday = id_num[6:10] + '-' + id_num[10:12] + '-' + ①
sex = '女男'
r = ②
return [birthday, sex[r]]
id_num='330281202002020648'
birthday, sex = id_Inf (( ③ ))
print(birthday, sex)
① ② ③
例:使用凯撒密码对明文”yza”进行加密的过程:“yza”→ 121 122 97 →··· → 98 99 100 →“bcd”
要求:如果明文是大写字母则需要转小写。如果明文是其它字符则不作任何处理。例如:明文为“ABc,z”密钥为3,则结果密文为“def,c”
def change(code,key):
#change函数功能:实现要进行加密的字符code由大写字母转小写字母
#判断转换后的字符code是否为小写字母,若是则进行加密
m=ord(code)
return chr(m)
code=input(“请输入要加密的明文”)
key=int(input(“请输入密钥”))
code_new=“”
for i in code:
code_new+=change(i,key)
print(code_new)
def encrypt(msg,key):
result = ""
size = len(msg)
for i in range(0,size):
result = result + msg[(i - key) % size]
return result
msg = input("请输入明文:")
key = int(input("请输入密钥:"))
re =
print(re)
from flask import Flask,render_template,request
app = _____________
@app.route("/")
def index():
#显示“主页”页面,代码略
@app.route("/introduce")
def introduce():
#显示“介绍”页面,代码略
@app.route("/exercise",methods=["GET","POST"])
def exercise():
#显示“练习”页面,代码略
@app.route("/top")
def toplist():
#显示“排行榜”页面,代码略
if __name__ == "__main__":
app.____________
A.//127.0.0.1:5000/top toplist() |
a.@app.route("/top") |
B.//127.0.0.1:5000/ exercise() |
b.@app.route("/exercise",methods=["GET","POST"]) |
C.//127.0.0.1:5000/exercise introduce() |
c.@app.route("/introduce") |
D.//127.0.0.1:5000/instance index() |
d.@app.route("/") |
、、、