Skip to content

Instantly share code, notes, and snippets.

View masasa27's full-sized avatar

masasa masasa27

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@masasa27
masasa27 / Flow Control.ipynb
Last active August 1, 2020 19:59
flow control
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@masasa27
masasa27 / lst.py
Created August 1, 2020 19:16
lst copy
lst = [1, 2, 3]
lst3 = lst # copy the list memory location, lst3 and lst are the same object!
lst2 = lst[:] # copy the list values, and not the memory location
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@masasa27
masasa27 / numbers.ipynb
Created August 1, 2020 18:28
Numbers walk through
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@masasa27
masasa27 / hello_world.py
Last active August 1, 2020 18:19
hello_world.py
# print function - prints to the screen
print("hello world!")
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.