主要是练习while 循环和 if 条件判断的使用 #!_*_coding:utf-8_*_ # Author: hkey def options(list): for i, v in enumerate(list): print(i + 1, v) choice = input('\33[34;1m请选择:\33[0m') return choice def city(list): while True: choice = options(list) if choice == str(len(
//http://www.cnblogs.com/mingmingruyuedlut/archive/2013/01/20/2849906.html C# 将List中的数据导入csv文件中 将数据保存至文件中,是一个比较常用的功能,数据源可以是多种形式,文件也可以是多种. 这里简单的介绍将List数据导入到CSV文件中的方法. 代码如下所示: Student类: public class Student { private string id; public string Id { get
Android开发过程中在sh,py,mk文件中添加log信息的方法 在sh文件中: echo "this is a log info" + $info 在py文件中: print ("this is a log info ",info) 在mk文件中 $(warning warning:'this is a log info')