Home
Rupesh Bhandari
Cancel

Python Quickstart

Preface Welcome to the world of Python programming! This book is designed to help you learn the fundamentals of Python, from the basic syntax and data types to more advanced concepts such as objec...

Python Arithmetic Puzzle

Operator Challenge: x = 8 - 2 * 3 + 1 y = (8 - 2) * 3 + 1 z = 8 - (2 * 3 + 1) print(x, y, z) Division Challenge: x = 15 / 4 y = 15 // 4 z = 15 % 4 print(x, y, z) Mixed Operations: x = 3 + 2...

Test

hello

Tax Evasion

An attempt towards better Nepal! Companies list Company Name Address Shandar Momo & Stick Foods Saraswatinagar Saraswati Nagar, Kathmandu ...

Sex Offenders

An attempt towards better Nepal! Since, we dont have any sites to report sexual harassment, we are creating this page to list all offenders. It’s not ideal or possible to find all the details ...

LESSONS FROM 101 SIMPLE TRUTHS FOR A BETTER LIFE

Here are the lessions I learned from the book 101 Simple Truths for a Better Life by David J. Pollay. Be humble, you don’t know everything. Lift weights often. Take walks in nature. Seek ...

SQL

SQL select * from table_name;

What is compounding?

Compounding is the process of earning interest on interest. It is a powerful tool that can help individuals grow their wealth over time. The importance of time in compounding lies in the fact that ...

Python Regex

RegEx Module Python has a built-in package called re, which can be used to work with Regular Expressions. Import the re module: import re regex functions The re module offers a set of functio...

Build Exe file

Introduction PyInstaller is a popular and powerful tool for converting Python scripts into standalone executable files. This tool is useful for a variety of reasons, such as distribution, protecti...