python腳本框架webpy模板控制結構
控制結構就是for
,while
,if-else
,if-elif
,while…else
,在web.py中其實和我們以前學過的一樣,操作基本是相同的,但是裡面還是有一些不同!
for
$for row in range(10): 第$row行 $def with(funs) $for row in funs:
第$row行
這裡一定要記住funs不要添加$
如果funs是list,那$ros具體list的一些屬性,在while中你可以看到
while
$while funs: $funs.pop()
funs是list,具體pop屬性
if-else
$for row in range(10): $if row==2: 我是2 $elif row==3: 我是3 $else: $row
實例
index.html中的內容
$def with(fun_name,funs) <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>web參數模板</title> </head> <body> <h2>我的名字:range函數的使用</h2> $for row in range(10): 第$row行 <h2>我的名字:$fun_name</h2> $# 註釋 $for row in funs: 第$row行 <h2>我的名字:while循環</h2> $while funs: $funs.pop() <br/> <h2>我的名字:if-else</h2> $for row in range(10): $if row==2: 我是2 $elif row==4: 我是4 $else: $row </body> </html>
Python中的內容:
#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循環',[1,2,3,4,5,6,7,8,9,10]) app=web.application(urls,globals()) if __name__ == '__main__': app.run()
結果:
以上就是python腳本框架webpy模板控制結構的詳細內容,更多關於webpy框架模板控制結構的資料請關註WalkonNet其它相關文章!
推薦閱讀:
- python編程webpy框架模板之def with學習
- python腳本框架webpy入門安裝及應用創建
- python腳本框架webpy的url映射詳解
- python miniWeb框架搭建過程詳解
- Python Django框架介紹之模板標簽及模板的繼承