Welcome To Snipplr
Everyone's Recent Python Snippets
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
This is a function that will show a progress bar of the given percentage. Useful when performing time consuming tasks.
1
1125
posted 15 years ago by gdvickery
Python allows for strings to be formatted using a predefined format string with a list of variables.
The following is an example of using multiple format strings to display the same data:
0
824
posted 15 years ago by magicrebirth
The lambda operator built in to the Python language provides a method to create anonymous functions. This makes it easier to pass simple functions as parameters or assign them to variable names. The lambda operator uses the following syntax to define...
1
784
posted 15 years ago by magicrebirth
Scoping in Python revolves around the concept of namespaces. Namespaces are basically dictionaries containing the names and values of the objects within a given scope. There are four basic types of namespaces that you will be dealing with: the global...
0
970
posted 15 years ago by magicrebirth
// Is there a way in python to convert a list say [1,2,3,4] to a string and
// also how to convert a string to a list?
// use str() or repr() to convert to a string.
// eval() will convert back to a list.
0
777
posted 15 years ago by magicrebirth