Python-Fundamentals-Legacy icon indicating copy to clipboard operation
Python-Fundamentals-Legacy copied to clipboard

Error in 04_data_types

Open liuange opened this issue 2 years ago • 0 comments

Under 'basic types in python', fitness should be a string, not a variable

Current:

# Subtraction with strings
print(fitness - 'a')

Corrected:

# Subtraction with strings
print('fitness' - 'a')

liuange avatar Nov 01 '22 03:11 liuange