Input and Output: str() function: return representations of values which are human-readable : str « Buildin Function « Python
- Python
- Buildin Function
- str
Input and Output: str() function: return representations of values which are human-readable

s = 'Hello, world.'
print str(s)
Related examples in the same category