Python Programming Python Code Samples



Filters


Read nth line in a file using python
kishore_kumar | 5 years, 7 months
file_ob = open('/path/to/file')
n = 4
for i, line in enumerate(file_ob):
python
convert and decode base64 string into pdf using python
kishore_kumar | 5 years, 10 months
import base64

b64str = "a29kZXJwbGFjZQ=="
python base64
Ramya
Python: Vending Machine
Ramya | 5 years, 11 months
class SodaMachine:
    def __init__(self,product,price):
        self.product=product
python >>>from <file_name> import <class_name> >>>shop=class_name("product",price) #Instantiate
python
Example to use a DAG to run a jar file.
Reshma | 5 years, 9 months
from airflow import DAG
from airflow.operators import BashOperator
from datetime import datetime
python airflow jar
generate random numbers matrix with numpy python
kishore_kumar | 6 years, 9 months
import numpy as np

random_arr = np.random.randint(1,50,9)
python numpy
Matplotlib pie chart replace auto labelled values with original values
kishore_kumar | 6 years, 7 months
import matplotlib.pyplot as plt

labels = 'Grapes', 'Oranges', 'Mangoes', 'Apples'
*autopct*: [ *None* | format string | format function ] If not *None*, is a string or function
python matplotlib
List all files and folders using python os module
kishore_kumar | 7 years
import os

def list_files_folders(path):
python python-os
Ramya
Lambda code for Creating VPC flow log automatically when a VPC is created
Ramya | 6 years, 2 months
from __future__ import print_function
import json
import os
lambda boto3 aws
use python requests to get contents of url ( get request )
kishore_kumar | 6 years, 9 months
import requests

req = requests.get("https://httpbin.org/get")
python python-requests
create matrix and multiply using numpy in python
kishore_kumar | 6 years, 9 months
import numpy as np

matrix = [[1,2,3], [4,5,6], [7,8,9]]
python numpy
Prev Next