Hackerrank problem solving ( Print Function in python)

preview_player
Показать описание
This is my Youtube channel where you will get easy oriented way of learning programming skills.I will walk you through tones of programming language tutorials, so please do subscribe , like and share my channel to get updated with my latest videos.

#Print_Function_hackerrank
#hackerrank
#Print_Function_HackerRank_Solution

Hackerrank problem solving ( Print Function in python)
Read an integer .

Without using any string methods, try to print the following:

Note that "" represents the values in between.

Input Format

The first line contains an integer .

Output Format

Output the answer as explained in the task.

Sample Input 0

3
Sample Output 0

123
Рекомендации по теме
Комментарии
Автор

n = int(input())
for i in range(1, n+1):
print(i, end='')

macarop
Автор

what does : end = ' ' means?

bostangpalaguna
Автор

Try to film in nice environment, but I love your solution.

sukhkaur
Автор

n = int(input())
i=0
for i in range (n):
i=i+1
print(i, end='')
# its also a possible solution of this problem

geohubbd
Автор

you aren't audible i can't hear

wekesabuyahi