Assignment
University
University of ReginaCourse
Computer Science (UR)Pages
1
Academic year
2023
priyankavaiya07
Views
0
p {margin: 0; padding: 0;} .ft00{font-size:108px;font-family:Calibri-Light;color:#ff0000;} .ft01{font-size:108px;font-family:Calibri-Light;color:#ff0000;} .ft02{font-size:54px;font-family:Calibri-Light;color:#ff0000;} .ft03{font-size:16px;font-family:Calibri;color:#000000;} .ft04{font-size:23px;font-family:Calibri-Light;color:#ff0000;} .ft05{font-size:23px;line-height:31px;font-family:Calibri-Light;color:#ff0000;} ASSIGNMENT - 8 20SE02IT009 HARSH BHANDERI Q1. Reverse the following tuple aTuple = (10, 20, 30, 40, 50) (50, 40, 30, 20, 10) aTuple = (10, 20, 30, 40, 50) b=aTuple[::-1] print(b)
Python Tuple Reverse: Reversing a Tuple
Please or to post comments