Print Function Python
print(): This function is used standard output
The included code stub will read an integer, n, from STDIN.
Without using any string methods, try to print the following:
123….n
Note that “…” represents the consecutive values in between.
Example
Print the string 12345.
Input Format
The first line contains an integer .
Constraints
1<=n<=150
Output Format
Print the list of integers from 1 through n as a string, without spaces.
Sample Input 0
3
Sample Output 0
123
Code:
if __name__ == '__main__': n = int(input()) for i in range(1,n+1): print(i,end ="")
Disclaimer: These problems are originally created and published by HackerRank, we only provide solutions to those problems.Hence, doesn’t guarantee the truthfulness of the problem. This is only for information purposes.