Answer :
Default value of sep in print( ) - ' '
Default value of end in print( ) - \n
Easiest way to print output - Using fstring
Return type of split( ) - str
print('{num:>5}') - Right justify num in 5 columns
print('{num:<5}') - Left justify num in 5 columns
0 Comments:
Post a Comment