Python Code Samples



Filters


How to get full path of python module file and directory
kishore_kumar | 5 years, 8 months
import os

if __name__ == '__main__':
python python-os
Python get last working day of the month
kishore_kumar | 3 years, 5 months
from datetime import datetime
import calendar

python datetime
POST request in python using requests
kishore_kumar | 6 years, 5 months
import requests

url = "https://httpbin.org/post"
url can be your API/service URL for your request.
python python-requests
How to get first day of the month in python
kishore_kumar | 3 years, 3 months
from datetime import datetime

first_day = datetime.today().date().replace(day=1)
python datetime
durga
Finding Character in a String python
durga | 5 years, 9 months
S1=raw_input("enter String")
S2=raw_input("enter character")
S1=S1.upper() #we are changing into u
We can use lower() also, But both the strings should be changed into the same case(upper/lower).
python string in operator
get date ctime from python datetime
kishore_kumar | 5 years, 9 months
import datetime

today = datetime.date.today()
python datetime
Create a line chart using python matplotlib
kishore_kumar | 6 years, 4 months
import matplotlib.pyplot as plt

t = ['12-03-18','12-04-18' , '12-05-18', '12-06-18', '12-07-18']
python matplotlib
Generate Pie Chart in python using matplotlib
kishore_kumar | 6 years, 4 months
import matplotlib.pyplot as plt

labels = 'Grapes', 'Oranges', 'Mangoes', 'Apples'
python matplotlib
Using python generator for finding factors
kishore_kumar | 5 years, 8 months
def get_factors(num):
    i = 1
    while i * i < num:
python generator factors
convert string to python datetime object
kishore_kumar | 5 years, 8 months
import datetime

st = "2019-08-19 05:40"
python datetime
Prev Next