Facebook
From Crimson Bird, 2 Years ago, written in Python.
This paste is a reply to Untitled from Round Lemur - go back
Embed
Viewing differences between Untitled and Re: Untitled
ef print_n_to_x(n):
...     for x in range(1, 11):
...             print(n+x)

def print_n_to_x(n,t):
...     for x in range(1, t+1):
...             print(n+x)



def print_word_by_sep(word, sep):
...     for x in word:
...             print(x, end=sep)