摘要: 1. There is no 'for' for loop in sas. "Do" will be used; do i=1 to 100; ...; end; 阅读全文
posted @ 2013-07-13 23:06 yjjsdu 阅读(137) 评论(0) 推荐(0)
摘要: 1.在Python中有三种内建的数据结构——列表、元组和字典2.### list begin #!/usr/bin/python# Filename: using_list.py# This is my shopping listshoplist = ['apple', 'mango', 'carr... 阅读全文
posted @ 2013-07-13 16:24 yjjsdu 阅读(183) 评论(0) 推荐(0)
摘要: 1.##########if beginnumber = 23guess = int(input('Enter an integer : '))if guess == number: print ('Congratulations, you guessed it.') # New block sta... 阅读全文
posted @ 2013-07-13 13:18 yjjsdu 阅读(213) 评论(0) 推荐(0)