2016年8月1日
摘要: HTML Elements HTML Elements An HTML element usually consists of a start tag and end tag, with the content inserted in between:<tagname>Content goes he 阅读全文
posted @ 2016-08-01 12:41 lostkite 阅读(181) 评论(0) 推荐(0)
摘要: HTML Basic Examples HTML Documents All HTML documents must start with a documents type declaration:<!DOCTYPE html> The HTML document itself begins wit 阅读全文
posted @ 2016-08-01 10:44 lostkite 阅读(135) 评论(0) 推荐(0)
摘要: HTML Editors Write HTML Using Notepad or TextEdit Web pages can be created and modified by using professional HTML editors. However, for learning HTML 阅读全文
posted @ 2016-08-01 09:48 lostkite 阅读(130) 评论(0) 推荐(0)
摘要: What is HTML? HTML is a markup language for describing web documents (web pages). HTML stands for Hyper Text Markup Language A markup language is a se 阅读全文
posted @ 2016-08-01 09:34 lostkite 阅读(150) 评论(0) 推荐(0)
  2016年7月13日
摘要: 51CTO上看到这个视频,自己试做一下:尾数前移:N尾数是6,把6移到最前面后是N的4倍 def move_last_num(): a = 1 while True: if 4 * (a * 10 + 6) == 6 * (10 ** len(str(a))) + a: print(a) retur 阅读全文
posted @ 2016-07-13 15:08 lostkite 阅读(481) 评论(0) 推荐(0)
  2016年7月5日
摘要: 安装Python 3 CentOS 7下自带了Python 2.7,所以如果要使用Python 3,则需要重新安装Python 3 1、下载Python3.5的包 wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tar.xz 2、解 阅读全文
posted @ 2016-07-05 13:15 lostkite 阅读(2975) 评论(0) 推荐(0)
  2016年7月1日
摘要: Linux下: #!/usr/bin/env python3 Windows下: 安装完成后添加环境变量关联 输入和输出 Print()函数:print('The quick brow fox', 'jumps over', 'the lazy dog'); input()函数:name = inp 阅读全文
posted @ 2016-07-01 13:57 lostkite 阅读(212) 评论(0) 推荐(0)