您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“python腳本框架webpy模板控制結(jié)構(gòu)有哪些”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“python腳本框架webpy模板控制結(jié)構(gòu)有哪些”吧!
控制結(jié)構(gòu)就是for
,while
,if-else
,if-elif
,while…else
,在web.py中其實(shí)和我們以前學(xué)過(guò)的一樣,操作基本是相同的,但是里面還是有一些不同!
$for row in range(10): 第$row行 $def with(funs) $for row in funs:
第$row行
這里一定要記住funs不要添加$
如果funs是list,那$ros具體list的一些屬性,在while中你可以看到
$while funs: $funs.pop()
funs是list,具體pop屬性
$for row in range(10): $if row==2: 我是2 $elif row==3: 我是3 $else: $row
index.html中的內(nèi)容
$def with(fun_name,funs) <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>web參數(shù)模板</title> </head> <body> <h3>我的名字:range函數(shù)的使用</h3> $for row in range(10): 第$row行 <h3>我的名字:$fun_name</h3> $# 注釋 $for row in funs: 第$row行 <h3>我的名字:while循環(huán)</h3> $while funs: $funs.pop() <br/> <h3>我的名字:if-else</h3> $for row in range(10): $if row==2: 我是2 $elif row==4: 我是4 $else: $row </body> </html>
Python中的內(nèi)容:
#coding:utf-8 import web urls=('/','Index',) render =web.template.render('html/') class Index: def funA(self): mylist=['1','2','3','4','5'] return mylist def GET(self): web.header('Content-Type','text/html;charset=UTF-8') return render.myindex('for循環(huán)',[1,2,3,4,5,6,7,8,9,10]) app=web.application(urls,globals()) if __name__ == '__main__': app.run()
結(jié)果:
到此,相信大家對(duì)“python腳本框架webpy模板控制結(jié)構(gòu)有哪些”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢(xún),關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。