#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Mar Oct 8 10:17:20 2019 @author: andrea """ # RECAP # - for # - while # - if # - funzioni e argomenti posizionali e opzionali # oggetti ed uso degli oggetti # - attributi # - metodi # - type # - isinstance # metodi delle stringhe # split/join splitlines # strip # upper/lower # isalpha/isdigit/isdecimal # find replace count # format/f"strings" # metodi delle liste # slice [start:end+1:incr] normali e a rovescio (-inc) # append, extend, insert # remove, del (element or slice) # index, count # copy # sort vs sorting # funzioni anonime