Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- multiples = []
- for x in range(1, 11):
- multiples.append(x * 7)
- print(multiples)
- mult_comperh = [x * 7 for x in range(1, 11)]
- print(mult_comperh)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement