Answers for "replicate python"

0

replicate python

>>> ["A","B"]*2
['A', 'B', 'A', 'B']
Posted by: Guest on June-06-2020
0

replicate python

> rep(c("A","B"), times=2)
[1] "A" "B" "A" "B"
Posted by: Guest on June-06-2020
0

replicate python

a = ['1','2','3','4']
output = [a]*1000
Posted by: Guest on June-06-2020

Code answers related to "replicate python"

Python Answers by Framework

Browse Popular Code Answers by Language