Skip to content

Instantly share code, notes, and snippets.

import java.util.ArrayList;
import java.util.Scanner;
public class c2a1q4_2019_AzmirFakkri {
public static void main(String[] args) {
// String arrayList to store answers from everyone (arrayList of arrays)
ArrayList<String[]> listOfAnswersFromEveryone = new ArrayList<>();
// for loop to ask the questions to 4 persons
@azmirfakkri
azmirfakkri / send_email.py
Created August 24, 2019 16:51
Email automation using Python and Google Sheet
# we need these modules to send the emails
import smtplib
import ssl
# these modules will allow you to create the client and interact
# with Google Sheet
import gspread
from oauth2client.service_account import ServiceAccountCredentials
# these modules will help you create the HTML emails