“Zamień skrzynkę Python” Kod odpowiedzi

Przekształcanie liter kapitałowych na małe litery i odwrotnie w Python

s=input()
new_str=""
for i in range (len(s)):
    if s[i].isupper():
        new_str+=s[i].lower()
    elif s[i].islower():
        new_str+=s[i].upper()
    else:
        new_str+=s[i]
print(new_str)
        
        
Homeless Hawk

Swapka

str_swapcase = "what was that about?".swapcase()
print(str_swapcase)
rajib2k5

Zamień w Python

# Python program to swap two variables

x = 5
y = 10

# To take inputs from the user
#x = input('Enter value of x: ')
#y = input('Enter value of y: ')

# create a temporary variable and swap the values
temp = x
x = y
y = temp

print('The value of x after swapping: {}'.format(x))
print('The value of y after swapping: {}'.format(y))
Amused Armadillo

Funkcja zamiany Pythona

def swap0(s1, s2):
    assert type(s1) == list and type(s2) == list
    tmp = s1[:]
    s1[:] = s2
    s2[:] = tmp
    
# However, the easier and better way to do a swap in Python is simply:
s1, s2 = s2, s1
Gorgeous Goshawk

zamiana górnej skrzynki i dolnej skrzynki Python

# swapcase() method 

string = "thE big BROWN FoX JuMPeD oVEr thE LAZY Dog"
print(string.swapcase()) 

>>> THe BIG brown fOx jUmpEd OveR THe lazy dOG
Aggressive Addax

Zamień skrzynkę Python

t = "Mr.Brown"
nt = t.swapcase()
print(nt)
Silver Takana

Odpowiedzi podobne do “Zamień skrzynkę Python”

Pytania podobne do “Zamień skrzynkę Python”

Więcej pokrewnych odpowiedzi na “Zamień skrzynkę Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu