Vega strike Python Modules doc  0.5.1
Documentation of the " Modules " folder of Vega strike
 All Data Structures Namespaces Files Functions Variables
string.py File Reference

Go to the source code of this file.

Namespaces

 string
 

Constant Groups

 string
 

Functions

def lower
 
def upper
 
def swapcase
 
def strip
 
def lstrip
 
def rstrip
 
def split
 
def join
 
def index
 
def rindex
 
def count
 
def find
 
def rfind
 
def atof
 
def atoi
 
def atol
 
def ljust
 
def rjust
 
def center
 
def zfill
 
def expandtabs
 
def translate
 
def capitalize
 
def capwords
 
def maketrans
 
def replace
 

Variables

string whitespace = ' \t\n\r\v\f'
 
string lowercase = 'abcdefghijklmnopqrstuvwxyz'
 
string uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
 letters = lowercase+uppercase
 
 ascii_lowercase = lowercase
 
 ascii_uppercase = uppercase
 
 ascii_letters = ascii_lowercase+ascii_uppercase
 
string digits = '0123456789'
 
string hexdigits = digits+'abcdef'
 
string octdigits = '01234567'
 
string punctuation = """!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~"""
 
 printable = digits+letters+punctuation+whitespace
 
string _idmap = ''
 
 index_error = ValueError
 
 atoi_error = ValueError
 
 atof_error = ValueError
 
 atol_error = ValueError
 
 splitfields = split
 
 joinfields = join
 
 _float = float
 
 _int = int
 
 _long = long
 
tuple _StringType = type('')
 
 _idmapL = None