python编程 NO : multiplication table
摘要:1 #!/usr/bin/python 2 # desc: print multiplication table 3 # author: sx202 4 # time: 20180211 5 # version: v1.0 6 for i in range(1,10): 7 for j in range(1,10): 8 ...
阅读全文
python编程 NO 1 : hello world !!
摘要:#!/usr/bin/python# desc: print helloworld# author: sx202# time: 20180211# version: v1.0print ("hello world!!")
阅读全文