please help to understand c qualifiers in python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

please help to understand c qualifiers in python

explain the code to me I am unable to get it how output is being calculated? https://code.sololearn.com/c5DSYVu27FH7/?ref=app

28th Apr 2021, 4:34 PM
Ratnapal Shende
Ratnapal Shende - avatar
1 Answer
+ 2
%s is for string the code takes input (thats supposed to be a number) and sandwitches that number together side by side as a string and then converts to integer. at the end, all integers are added. example input: 5 # it would be 5 55 555 5555 # then the code adds em up #output 6170 *you can test it by adding all those numbers above up
28th Apr 2021, 10:51 PM
Slick
Slick - avatar