
The code snippet below results in output:
[0.0, 0.1, 0.2, 0.3, 0.4, 0.5]
Modify the list comprehension statement so that the output will be:
[0.0, 0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0] #pythonprogramming #pythoneducation #precalculuswithpython #Pythoncoding

English