终于还是熬不住了,转行了,分享一波刚学到的知识吧,字符串的自带函数.py

        网传IT行业很难,没错我是真真正正的体验到了()               

        大家好,我原来是在大学自学了java的大部分技术,基本上可以达到企业级开发了,大三一结束我就在浙江杭州开始找工作,找了两个月,中间一共找到过三个关于后端开发的工作,加在一起工作了半个月左右,种种原因都没有继续工作。

        后来面试了一个Python爬虫做rpa自动化的实习生,我想我现在大四公司如果愿意培养我,一年的时间也足够我成长了,IT行业真的太难了现在

        后面会继续更新关于IT技术的文章

先分享一波

比较常见的字符串操作,不是全部哦

  1. 创建字符串:
    
    s1 = 'hello'
    
    s2 = "world"
    
    

    这里的创建字符串就比较直接,不用先Str什么的了,用单引号,双引号或者三引号包裹着就行,自动以字符串的形式存储

  2. 字符串拼接
    
    s3 = s1 + ' ' + s2
    
    print(s3)  # 输出:hello world
    
    

  3. 字符串重复:
    
    s4 = s1 * 3
    
    print(s4)  # 输出:hellohellohello
    
    

  4. 访问字符串中的字符:
    
    first_char = s1[0]
    
    print(first_char)  # 输出:h
    
    

  5. 切片操作:
    
    substring = s1[1:4]
    
    print(substring)  # 输出:ell
    
    

  6. 字符串长度:
    
    length = len(s1)
    
    print(length)  # 输出:5
    
    

  7. 字符串分割:
    
    words = s1.split(' ')
    
    print(words)  # 输出:['hello']
    
    

  8. 字符串替换:
    
    new_s = s1.replace('l', 'L')
    
    print(new_s)  # 输出:heLLo
    
    

  9. 字符串大小写转换:
    
    upper_s = s1.upper()
    
    print(upper_s)  # 输出:HELLO
    
    lower_s = s1.lower()
    
    print(lower_s)  # 输出:hello
    
    

  10. 字符串格式化:
    
    name = "Alice"
    
    age = 30
    
    info = f"{name} is {age} years old."
    
    print(info)  # 输出:Alice is 30 years old.
    
    

你可能感兴趣的:(开发语言,python)