Start: Apr, 17, 2017 10:00:00
Python程序设计基础培训第一次作业
End: Apr, 21, 2017 12:00:00
Time elapsed:
Time remaining:

Problem_ID: B
Result: Accepted
Time: 124ms
Memory: 21432kB
Author: 18958329966
In contest: 1085

#!/usr/bin/python
#-*- coding:UTF-8 -*-
list1=['cyp',170, 'mwy',165, 'zp',175, 'wxa',175, 'zl',160, 'yl',175, 'cjc',180, 'ydw',180, 'sjy',165, 'wjn',165, 'lsc',170, 'wzj',170, 'zry',170, 'cjf',170]
i=0
while i<len(list1):
    if list1[i+1]>150:
        print list1[i]
    i=i+2