n = int(input(" how many students : "))
for n3 in range(n):
name = input(" Name them : ")
for marks in range(3):
mar1 = int(input(" Whats Marks : "))
print(mar1)
query_name = input("average kiska : ")
q = (mar1 + mar1 + mar1)
z = q/n
print(z)
# n is an integer
# n_space integer as an input
# create Tuple (t) of those integers n
# print hash(t)
#n denoted the numbers of element in the tuple
# n_space describes the element in tuple t
inp = map(int,input(":").split())
for val in inp:
n = str(input(":").split("\n"))
t = (n,)
print(type(t))
print(hash(t))
Post a Comment