Skip to content

Instantly share code, notes, and snippets.

@shifatul-i
Created October 3, 2019 19:28
Show Gist options
  • Select an option

  • Save shifatul-i/bf6f1816f798b7ea42f9e2f4632b517c to your computer and use it in GitHub Desktop.

Select an option

Save shifatul-i/bf6f1816f798b7ea42f9e2f4632b517c to your computer and use it in GitHub Desktop.
lotsofhellos = "hello " * 10
print(lotsofhellos)
even_numbers = [2,4,6,8]
odd_numbers = [1,3,5,7]
all_numbers = odd_numbers + even_numbers
print(all_numbers)
print([1,2,3] * 3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment