摘要:
1.打开文件路径选择文件 var openFileDialog = new Microsoft.Win32.OpenFileDialog(); var result = openFileDialog.ShowDialog(); if (result == true) { save_csv_path 阅读全文
摘要:
最新开始自学Python,下面是做的习题,自我记录一下,方便日后查看。 # 有4个数字,1,2,3,4 他们可以组成多少个互不相同且无重复数字的3位数,各是多少def test1(): i=1 j=1 k=1 n=0 while i<5: print('i') while j<5: print('j 阅读全文