Computer Science

Write the output of the following Python code:

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

Python Funda

12 Likes

Answer

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

Answered By

4 Likes


Related Questions