String Methods
The lower() method simply converts all uppercase letters in a string to 
lowercase letters and returns it. For example:

str1 = "AbCdEfG"
lower_str = str1.lower()
print(lower_str )       # will print "abcdefg" to the terminal

The replace() method takes two arguments, the first is the thing you want to replace, 
and the second is the thing you want to replace it with. These two arguments are 
separated with a comma.
 
For example, if you wanted to replace all full stops in a string with exclamation marks:

str = "Hi. Nice to meet you." 
new_str = str.replace(".", "!")
print(new_str)           # would print "Hi! Nice to meet you!"

The split() method breaks up a string and turns it into a list. 
If you don't pass the split method any arguments, it will split a string at its spaces. 
For example:

str = "What do you think?
"new_str = str.split()
print(new_str)           # would print ['What', 'do', 'you', 'think?']

Or you can pass the split() method a string value to split it up at. 
For example, this code uses the repeated "and" to break up the string into a list.

str = "Oranges and apples and bananas"
fruit_list = str.split("and")
print(fruit_list)        # would print ['Oranges ', ' apples ', ' bananas ']
javacript srting
var i =10 
string functions
#def function
--------------------------------------------------------------------------------
def fun(s):
    k=len(s)
    m=' '
    for i in range(0,k):
      
        if s[i].isupper():
            m=m+s[i].lower()
            
        elif s[i].isalpha():
            m=m+s[i].upper()
            
        else:
             if  s[i].isdigit():
                    m=m+ 'll'
             else:
                 if s[i].isspace():
                   m=m + 'e'
                    
                 else:
                     m=m + 'i'
   print(m)
  
fun('rag kI2sbra$n')
--------------------------------------------------------------------------------
#Output:

 '  RAGeKillSBRAiN   '

Python相关代码片段

pathlib python

pandas excelwriter

python practise

key,value en python

linear regression in tensorflow

spark dataframe get column

drop one table sqlalchemy

python code to remove last character from string

fastapi get body on http middleware

custom neural network in keras

python selenium execute_script

db model for blog

yolov5 opencv

Get first 100 lines of file - python

python playground

print number pattern using for loop in python

ollama python

no module named 'wget'

No module named 'langchain'

failed to build wxpython

python vs c#

rabbitmq python example

change the django url prefix name

np.linspace is not defined python

LLM beguiner guide python

python parquet file to csv

python best practices

yolov5 without net

save variable as pkl python

python [-9:]

eigenface python

'DataFrame' object has no attribute 'dtype'

unable to enable maximize window tkinter

rabbit and fox numpy python

lstm in keras

neural network in keras

resnet50 in keras

autoencoder in keras

cnn in keras

tensor in keras

pyTelegramBotAPI edit photo

print api python

how to get values but not index from pandas series

how to get mode of a column from pandas

bayesian neural network pymcmc

lda python

back propagation python

logical syntax is not none python

register model django

Descending Selection sort

Selection sort with while loops

Selection sort with for loops

Doubling Algorithm for cluster analysis in python

Tkinter widgets

nameerror: name 'callable' is not defined

NameError: name 'Union' is not defined

Make a widget customtkinter python

nn module pytorch

import tf python

Spark SEssion object

Implement Bubble sort with while loops

Unoptimized bubble sort algorithm

Optimized bubble sort algorithm

how to get today's date in python

st_aggrid install

python venv pip blocked by admin windows

numpy matrix from lists of different leght

python postgres auto commit

dotenv install python

np mean axis

LinkExtractor Object

admin django documentation

Python native Convolution implementation

is django monolithic

what is function call with an llm

np array to series

dht22 micropython pico

disable slash command discord.py

python docker compose not printing

tabnet probabilities