- 1. المدخلات والطباعة والأرقام
- 2. عدد صحيح وعدد عائم
- 3. الشروط: if-then-else
- 4. لحلقة مع النطاق
- 5. سلاسل
- 6. حائط اللوب
- 7. قوائم
- 8. وظائف والتكرار
- 9. القوائم ثنائية الأبعاد (المصفوفات)
- 10. موعات
- 11. قواميس
- 12. جافا سكريبت
- 13. HTML5 and CSS
- 14. Responsive Design with Bootstrap
- 15. jQuery
Slices
Statement
You are given a string. In the first line, print the third character of this string.
In the second line, print the second to last character of this string.
In the third line, print the first five characters of this string.
In the fourth line, print all but the last two characters of this string.
In the fifth line, print all the characters of this string with even indices (remember indexing starts at 0, so the characters are displayed starting with the first).
In the sixth line, print all the characters of this string with odd indices (i.e. starting with the second character in the string).
In the seventh line, print all the characters of the string in reverse order.
In the eighth line, print every second character of the string in reverse order, starting from the last one.
In the ninth line, print the length of the given string.
Advertising by Google, may be based on your interests
In all the problems input the data using input()
and print the result using print()
.
Statement
You are given a string.In the first line, print the third character of this string.
In the second line, print the second to last character of this string.
In the third line, print the first five characters of this string.
In the fourth line, print all but the last two characters of this string.
In the fifth line, print all the characters of this string with even indices (remember indexing starts at 0, so the characters are displayed starting with the first).
In the sixth line, print all the characters of this string with odd indices (i.e. starting with the second character in the string).
In the seventh line, print all the characters of the string in reverse order.
In the eighth line, print every second character of the string in reverse order, starting from the last one.
In the ninth line, print the length of the given string.
In all the problems input the data using input()
and print the result using print()
.