Common List Patterns and Join Method
print(list(range(1,10)))
print(list(range(10)))
scope=' '
new_line=scope.join(["I","go","fight"])
print(new_line)
print("@".join(['let\'s','play','together']))
INFO
print(list(range(1,10)))
print(list(range(10)))
scope=' '
new_line=scope.join(["I","go","fight"])
print(new_line)
print("@".join(['let\'s','play','together']))