"The Man" <shogan at iel.ie> writes: > what is the equivalent python code for the C code: > printf("whats yer name"); > scanf("%s", name) > printf("%s", name) name = raw_input("whats yer name") print name -Justin