一,安装python
二,hello,world!
print("你好,世界!");
Python中默认的编码格式是 ASCII 格式,在没修改编码格式时无法正确打印汉字,所以在读取中文时会报错。
解决方法为只要在文件开头加入 # -*- coding: UTF-8 -*- 或者 #coding=utf-8 就行了。
python 3.x 的源码文件默认编码格式是UTF8的,所以不需要设置。
如果你使用编辑器,同时需要设置 py 文件存储的格式为 UTF-8。
三,web.py
Hello World!
import web
urls = ( '/(.*)', 'hello',) class hello(object): def GET(self, name): return 'Hello World!' if __name__ == '__main__': app = web.application(urls, globals()) app.run()
hello,world----get传参:https://blog.csdn.net/u011541946/article/details/77842552
import web
urls = ( '/(.*)', 'hello' )class hello: def GET(self, name): if not name: name = 'world' return 'Hello, ' + name + '!' if __name__ == "__main__": app = web.application(urls, globals()) app.run()
页面+提交表单:
# -*- coding: utf-8 -*-
import web
render = web.template.render("templates/")
urls = (
'/index', 'index')db_conf = {
'dbn': 'mysql', 'db': 'marketingdb', 'host': 'localhost', 'port': 3306, 'user': 'root', 'pw': '', 'charset': 'utf8'}class index:
def GET(self): data = web.input() print ('GET data:', data) if 'id' not in data.keys(): data.id = -1000 return render.login(data)if __name__ == "__main__": app = web.application(urls, globals()) app.run()注意:页面首行一定要写上“$def with (data)”,否则报错: __template__() takes no arguments (原因还未知,稍后查询下为什么一定要写上$def)
** web.ctx
在webpy中web.ctx包含了用户请求的信息,其中web.ctx.path表示当前应用的路径,需要注意path并非全路径。
web.ctx.homepath + web.ctx.path 才是全路径。
eg:
web.ctx.path
将返回 /create
不包含前半部分。注意:包括斜杠部分。
web.ctx.homepath
则返回前半部分/code-snippet。注意:包括斜杠部分。
split()
字符串分割split() 放split()函数没有参数时,当以空格分割。