This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |