Learn practical skills, build real-world projects, and advance your career
n=int(input("Enter n: "))
for i in range (n,0):
    for j in range(i+1):
        print(j,end=" ")
    print()
Enter n: 5
!pip install jovian --upgrade --quiet
import jovian
# Execute this to save new versions of the notebook
jovian.commit(project="exam-practe")