Skip to content

Instantly share code, notes, and snippets.

@msiahaan
msiahaan / PY0101EN-3-3-Functions.ipynb
Created September 18, 2020 05:14
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@msiahaan
msiahaan / PY0101EN-3-2-Loops.ipynb
Created September 17, 2020 22:37
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@msiahaan
msiahaan / PY0101EN-2-4-Sets.ipynb
Created September 16, 2020 10:26
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@msiahaan
msiahaan / PY0101EN-2-3-Dictionaries.ipynb
Created September 16, 2020 10:10
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@msiahaan
msiahaan / PY0101EN-2-2-Lists.ipynb
Created September 16, 2020 09:55
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@msiahaan
msiahaan / PY0101EN-2-1-Tuples.ipynb
Created September 16, 2020 09:48
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@msiahaan
msiahaan / PY0101EN-1-1-Types.ipynb
Created September 14, 2020 05:05
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@msiahaan
msiahaan / PY0101EN-1-2-Strings.ipynb
Created September 14, 2020 05:03
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sun Apr 12 20:47:27 2020
@author: micosiahaan
"""
from math import pi, log
#define class Egg
@msiahaan
msiahaan / create_customers_dirs.py
Created January 10, 2020 04:54
Create Customers from Excel file
# File: Create Customers Directoties/Folders
# Create Customers Folders from Customers data in Excel
import pandas
# define function to get data
def get_data(filedata):
try:
customers_dataframe = pandas.read_excel(filedata)