Computer Science

Write the output of the following Python code:

for i in range(2,7,2):
    print(i*'$')

Python Funda

31 Likes

Answer

Output
$$
$$$$
$$$$$$

Answered By

15 Likes


Related Questions