Python 75
[Python 100] Python 100
#!/usr/bin/python
# -*- coding: UTF-8 -*-
if __name__ == '__main__':
for i in range(5):
n = 0
if i != 1: n += 1
if i == 3: n += 1
if i == 4: n += 1
if i != 4: n += 1
if n == 3: print 64 + i
67
[Python 100] Python 100
yanice
672***[email protected]
#!/usr/bin/python # -*- coding: UTF-8 -*- import time if __name__=='__main__': date=time.strftime('%m-%d',time.localtime()) if date=='02-14': print '' else: print '' print ''yanice
672***[email protected]