Quick actions

cmd+k|ctrl+k

Navigation

Languages

34-3

Snippet info

Language

Python

Visibility

public

Author

python100

Created

2025-08-02T20:39:56.026934Z

Updated

2025-08-02T20:39:56.026934Z

def prettyPrint():
  os.system("clear") 
  print("listofEmail") 
  print()
  counter = 1 # добавляем счётчик
  for email in listOfEmail: 
    print(f"{counter}: {email}") # переделываем в f-строку
    counter += 1 # увеличиваем счётчик
  time.sleep(1)
  
  
INFO