A B C D E F G H I J K L M N O P Q R S T U CODE: x="A" y=0 n=int(input("How many rows\n")) for i in range(0,n+1): for j in range(0,i+1): print(chr(ord(x)+y),end=" ") y=y+1 print() OUTPUT: How many rows 5 A B C D E F G H I J K L M N O
1. Hiring Process: Talent Management 1. Apply Coupon code: JUNE-2021 2. Enroll Now 2. Learn to Code in Python 3: Programming beginner to advanced 1. Apply Coupon code: PYTHON_JUN_FREE_3 2. Enroll Now 3. Filmora 9 And X: Zero to Hero in Video Editing (2021) 1. Apply Coupon code: 2A5F722CEF449B86936C 2. Enroll Now 4. Flexible Budgets, Standard Costs, & Variance Analysis 1. Apply Coupon code: 1370162C29A52057CFBB 2. Enroll Now 5. Learning Angular 12 with A Project 1. Apply Coupon code: E3EE8AF667266B09321F 2. Enroll Now 6. Professional Adobe Photoshop CC Course With Advance Training 1. Apply Coupon code: PHOTOSHOPMASTERCLASS 2. Enroll Now 7. SEO - Strategy 2021. How to rank your website #1 in Google? 1. Apply Coupon code: SEOSTRATEGY 2. Enroll Now 8. Project Management Ess...
CODE: n=int(input("How many rows\n")) for i in range(n,0,-1): for j in range(i,0,-1): print(j,end=" ") print() OUTPUT: How many rows 5 5 4 3 2 1 4 3 2 1 3 2 1 2 1 1
Comments
Post a Comment