Write a R program to create a list named s containing sequence of 15 capital letters, starting from ‘E’
- برمجة R
- 2021-09-05
- adonis77j
الأجوبة
l = LETTERS[match("E", LETTERS):(match("E", LETTERS)+15)]
print("Content of the list:")
print("Sequence of 15 capital letters, starting from ‘E’-")
print(l)
Sample Output:
[1] "Content of the list:" [1] "Sequence of 15 capital letters, starting from ‘E’-" [1] "E" "F" "G" "H" "I" "J" "K" "L" "M" "N" "O" "P" "Q" "R" "S" "T"
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
معلومات ذات صلة