We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
To record my Python coding errors
for i in ["/","-","|","\","|"]; —> for i in [“/“,”-“,”|”,”\”,”|”]:
%r is for debugging; %s is for displaying.
for i in ['/','-','|','\','|']: print '%r\r' % i,
for i in ['/','-','|','\','|']: print ‘%s\r’ % i,
Python Error: “ValueError: need more than 1 value to unpack”
forgot to pass the variables when running ex13.py. solution: https://stackoverflow.com/questions/2814128/python-error-valueerror-need-more-than-1-value-to-unpack