πŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more β†’
Socket
DemoInstallSign in
Socket

logictools

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

logictools

A simple utility package for string and math functions

2025.3.8.1708
PyPI
Maintainers
1

LogicTools

LogicTools Banner

Overview

LogicTools is a Python package that provides utility functions for string and mathematical operations. It is designed to simplify common tasks such as string manipulation and basic mathematical calculation.

Features

  • Convert strings to uppercase
  • Reverse strings
  • Count words in a string
  • Perform basic mathematical operation (factorial)

Installation

You can install LogicTools via pip:

pip install logictools

Usage

String Utilities

from logictools import convert_to_uppercase, reverse_string, character_count

text = "Hello"
print(convert_to_uppercase(text))  # Output: HELLO 
print(reverse_string(text))        # Output: olleH
print(character_count(text))            # Output: 5

Mathematical Utilities

from logictools import factorial

print(factorial(5))   # Output: 120

πŸ“œ License

This project is licensed under the MIT License. πŸ“
See the LICENSE file for more details.

πŸ“¬ Contact

πŸ“§ Email: psai49779@example.com

πŸ”— LinkedIn: https://www.linkedin.com/in/rangdal-pavansai/

πŸ’» GitHub: https://github.com/Pavansai20054

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts