02 2018 档案

8-Images
摘要:HTML Image Tags TagDescription <img> Defines an image <map> Defines an image-map <area> Defines a clickable area inside an image-map HTML Image Tags U 阅读全文

posted @ 2018-02-18 22:27 克拉波隆方程 阅读(174) 评论(0) 推荐(1)

7-Links
摘要:Use the <a> element to define a link Use the href attribute to define the link address Use the target attribute to define where to open the linked doc 阅读全文

posted @ 2018-02-18 22:25 克拉波隆方程 阅读(145) 评论(0) 推荐(0)

6-CSS
摘要:HTML Style Tags CSS stands for Cascading Style Sheets. CSS describes how HTML elements are to be displayed on screen, paper, or in other media. CSS sa 阅读全文

posted @ 2018-02-18 22:24 克拉波隆方程 阅读(159) 评论(0) 推荐(0)

5-Comments
摘要:<!-- Write your comments here --> 阅读全文

posted @ 2018-02-18 22:23 克拉波隆方程 阅读(127) 评论(0) 推荐(0)

4-HTML Computer Code Elements
摘要:HTML Computer Code Elements 阅读全文

posted @ 2018-02-18 22:22 克拉波隆方程 阅读(163) 评论(0) 推荐(0)

3-html 缩写-地址-文字方向-引用块-题注的格式
摘要:HTML Quotation and Citation Elements TagDescription <abbr> Defines an abbreviation or acronym <address> Defines contact information for the author/own 阅读全文

posted @ 2018-02-17 00:11 克拉波隆方程 阅读(457) 评论(0) 推荐(0)

2-HTML Text Formatting Elements
摘要:下表列举了文字格式常见的关键字 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title style="color: red">This is a good test</title> 6 </hea 阅读全文

posted @ 2018-02-17 00:09 克拉波隆方程 阅读(237) 评论(0) 推荐(0)

1-HTML Attributes
摘要:下表列举了常用的Html属性 阅读全文

posted @ 2018-02-17 00:08 克拉波隆方程 阅读(291) 评论(0) 推荐(0)

LabVIEW--为设备添加配置文件.ini
摘要:需求:我同一个程序下载到两台机器人上,有些参数是不一样的,比如说服务器的ID或者端口,以及存放文件的位置,如果我每次下载之前改程序的话就非常麻烦了(虽然在程序里面是作为全局变量来存的),不利于后期的更新维护,一种很好的解决方法是在不同机器人对应目录下存放配置文件,程序再去读这个配置文件,这样我就可以 阅读全文

posted @ 2018-02-05 23:08 克拉波隆方程 阅读(2589) 评论(0) 推荐(0)

Python2018-列表的相关操作
摘要:列表中存放的数据是可以进行修改的,比如"增"、"删"、"改" 、“查” "增" append, extend, insert append 通过append可以向列表尾部添加元素 extend 通过extend可以将另一个集合中的元素逐一添加到列表中 insert insert(index, obj 阅读全文

posted @ 2018-02-02 17:47 克拉波隆方程 阅读(159) 评论(0) 推荐(0)

Python2018-字符串中字符个数统计
摘要:1 编写程序,完成以下要求: 统计字符串中,各个字符的个数 比如:"hello world" 字符串统计的结果为: h:1 e:1 l:3 o:2 d:1 r:1 w:1 1 print("-"*50) 2 print("*"*50) 3 currentstr = input("PLease inp 阅读全文

posted @ 2018-02-01 23:08 克拉波隆方程 阅读(5229) 评论(0) 推荐(0)

导航