https://signoz.io logo
a

alan

04/29/2022, 6:09 AM
I created a very sinnple python file for my testing
Copy code
# Initialize the list
weekdays = ["Sunday", "Monday", "Tuesday","Wednesday", "Thursday","Friday", "Saturday"]
print("Seven Weekdays are:\n")
# Iterate the list using for loop
for day in range(len(weekdays)):
    print(weekdays[day])