Computer Science, asked by TheLegend79, 3 months ago

Write a Basic program to print the name, address of a student.​

Answers

Answered by stranger0000
0

Answer :

#Basic python program to print name and address

Name = input("Enter Name : ")

Address = input("Enter Address: ")

print("Name :", Name)

print("Address :", Address)

Similar questions