12 2018 档案

摘要:import threading from time import ctime,sleep def music(func): for i in range(2): print("I was listening to %s. %s" %(func,ctime())) sleep(1) def move(func): for i in range... 阅读全文
posted @ 2018-12-28 16:20 彩色的梦 阅读(117) 评论(0) 推荐(0)
摘要:import re import os import urllib #根据给定的网址来获取网页详细信息,得到的html就是网页的源代码 def getHtml(url): page = urllib.request.urlopen(url) html = page.read() return html.decode('UTF-8') def getImg(html)... 阅读全文
posted @ 2018-12-27 10:34 彩色的梦 阅读(517) 评论(0) 推荐(0)
摘要:/*** * * 编辑器创建新窗口,并设置窗口布局 * * * * * */ using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEditor; public class EditorWindowTest : EditorWindow { ... 阅读全文
posted @ 2018-12-14 16:54 彩色的梦 阅读(248) 评论(0) 推荐(0)