From my university

Report a typo

Suppose that you want to receive emails only from your university. Taking into account that your university domain is ucsc.cl, write a program that prints True when an email is from your university and False otherwise. Emails received from an address should start with "From:" as in the example below.

Sample Input 1:

Sample Output 1:

True
Write a program in Python 3
import re

string = input()
#your code here
___

Create a free account to access the full topic