Skip to content

TimzOwen/python_practice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 

Repository files navigation

python_practice

python practice with questions and code sample solutions

String constance

string.ascii_letters

The concatenation of the ascii_lowercase and ascii_uppercase constants

described below. This value is not locale-dependent.

string.ascii_lowercase

The lowercase letters 'abcdefghijklmnopqrstuvwxyz'.

This value is not locale-dependent and will not change.

string.ascii_uppercase

The uppercase letters 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.

This value is not locale-dependent and will not change.

string.digits

The string 0123456789.

string.hexdigits

The string '0123456789abcdefABCDEF'

string.octdigits

The string '01234567'.

string.punctuation

String of ASCII characters which are considered punctuation

characters in the C locale: !"#$%&'()*+,-./:;<=>?@[\]^{|}~

string.printable

String of ASCII characters which are considered printable.

This is a combination of digits, ascii_letters, punctuation, and whitespace.

About

python practice

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages