ニュース

In Python, a list is a variable that stores multiple other variables. This is useful if you ever need to store a list of contacts, a list of options, or anything else in your app. Check out our ...
print(list1[::-1])# it will print list in reverse order print(list1[2:])# It will print list from index 2 with 2 index value print(list1[:3])# It will print list ...
初日におお!ってなったprint()文でまだ遊んでます。 と、いうか、「横方向に1文字ずつ処理している」って・・・ ちゃんと理解しようと、深掘ってみました。 そしたら、他にもいろいろわかってきました。 別に縦書きした覚えないのに…って、ちょっと ...
# Ask the user to input their fullname in incorrect casing. Print each character of the input in reverse casing. # Ask user their full name in incorrect casing ...