#!/usr/bin/env python3 #coding: utf-8 l = [] n = 1 while n <= 99: l.append(n) n = n + 2 print(l)