Category: Python

07
Jun
2022

Function Annotation -> and f(x:int) in Python

https://stackoverflow.com/questions/14379753/what-does-mean-in-python-function-definitions I have just studied after found and unit test example in youtube.

28
May
2022

Unit Test Example Code With Python:

I have done unit testing for the triangle function which finds if it is Scalene, Isoscalene or…

09
Feb
2022

SOLID principle implementation in Python

Here I will share about my learning on SOLID principle and implement those learning in Python. I…

22
Jan
2022

Selenium Testing with Python

  https://demo.seleniumeasy.com/basic-first-form-demo.html Python selenium commands cheat sheet from selenium import webdriver #chrome_browser=webdriver.Chrome(‘./chromedriver’) driver = webdriver.Chrome() driver.get(“https://demo.seleniumeasy.com/basic-first-form-demo.html”) driver.maximize_window()…

31
Dec
2021

Python Course Zero to Mastery from Udemy Blog Post Part-2

Part 1: Link Twitter Bot for various Activities: import time import tweepy auth=tweepy.OAuthHandler(”,” ) auth.set_access_token(”,”) api=tweepy.API(auth) #…

27
Oct
2021

Python Translator – How to make ? English to Bengali or other Translator

Here I will show how to make a python tanslator. My translate language will be Bengali/Bangla and…