Network Packet Generator

Easy
#loops #networking

Input: None. Return: List of integers from 1 to 100 representing packet IDs.

Example

Input: None
Output: [1, 2, 3, 4, 5]
Need a hint?
  • Use range(1, 101)
Run your code to see output