循环语句 一.概述 python中循环语句有两种,while,for: JavaScript中循环语句有四种,while,do/while,for,for/in jQuery循环语句each 二.python循环语句 2.1 for 循环 # a. li = [1, 2, 3, 4] for i in li: print(i) # b. li = [1, 2, 3, 4] for i, j in enumerate(li, 1): print(i, j) # enume
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace SmallResourceManager 8 { 9 public class MyFile 10 { 11 //文件名 12 public string Name { get;set; } 13 //文件类型 14 p