Quick actions

cmd+k|ctrl+k

Navigation

Languages

For

Snippet info

Language

Python

Visibility

public

Author

hilmi-am

Created

2020-06-23T11:57:34Z

Updated

2020-06-23T11:57:34Z

coffees = ['Arabica', 'Robusta']
for index in range(len(coffees)):
    print('Current Coffees {}'.format(coffees[index]))
INFO