• 코드:
​x
 
1
primes = [2, 3, 5, 7]
2
​
3
for p in primes:
4
    print(p)
5
​
6
print(len(primes))
7
​
표준입력 & 실행옵션