You are viewing a single comment's thread. Return to all comments →
This is what I came up with.
if __name__ == '__main__': n = int(input()) n = n + 1 v_combine = '' for v_value in range(1,n): v_combine += str(v_value) print(v_combine)
Seems like cookies are disabled on this browser, please enable them to open this website
Print Function
You are viewing a single comment's thread. Return to all comments →
This is what I came up with.