Skip to main content

A module containing only basic functions

Project description

#Greetings

Hello, my name is 'Aqouthe', the creator of this module. For this module, I just made a basic basis with codes I found on the internet, and the codes I made myself. (thanks to those who uploaded them on the internet) Hope you enjoy coding today.


#Code Description

you know in the math-related functions. And there is a function that determines the palindrome (is_palindrome) and a chatbot function. You can just use them however you like. And, when you create a project using what I have created, invoke the scripters_thanks function in specialproject. then come on

##is_palindrom?

'''python def k1() : def is_palindrom(s) : for i in range(0, int(len(s)/2)) : if s[i] != s[len(s)-i-1] : return False

    return True
string = input('input string : ')
if is_palindrom1(string) :
    print('%s is a palindrome.' % string)
else :
    print('%s is not a palindrome.' % string)

k1() '''

##factorial

'''python def factorial(n) : return n * factorial(n-1) if n > 1 else 1 factorial(2) # 2 factorial(6) # 720 '''

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

Bogidden-2.1.3-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page