Question
Define a function that can convert a integer into a string and print it in console.
Hints
Use str() to convert a number to string.
Solution
def printValue(n):
	print str(n)

printValue(3)

Next(random)