ziko-ZR1 Ответов: 2

Добавление префикса в строку Python


Привет, я новичок в python, и я борюсь, я не знаю, с чего начать, я хочу добавить другой префикс к каждой строке .


выход, который я получаю сейчас :

[reader]
label                         = free.freeccamserver.com 23011
protocol                      = cccam
user                          = 
6sbnlf free
group                         = 1
cccversion                    = 2.3.0


и это то, чего я хочу. :

[reader]
label                         = free.buyiptvcode.com
protocol                      = cccam
device                        = free.buyiptvcode.com,25668
user                          = cqb7f0
password                      = free
group                         = 1
cccversion                    = 2.3.0


Что я уже пробовал:

from builtins import int
    from collections import defaultdict
    from bs4 import BeautifulSoup as soup
    import requests
    from urllib.request import urlopen as uReq
    import string

    ####################################################################################
    ########### HERE IS THE URLS
    urls=['http://freeccamserver.com/free/get2.php','https://cccamz.com/FREEN12/new0.php']
    ##########
    ls=[]
    ####################################################################################
    def getURLS(urls):
            for url in urls:
                    test = uReq(url ,timeout=100)
                    html =  test.read()
                    pg = soup(html,'lxml')


    res = (pg.h1.text)
                splite = res.replace("C:","[reader]"+"\n"+"label                       
      =")
                release = re.sub(r"(?<=\d)\s+","\n"+"protocol                      
   = cccam"+"\n"+"user                          = "+"\n" , splite)
                all = release.replace("\r","\n"+"group                         = 
   1"+"\n"+"cccversion                    = 2.3.0"+"\n")
                    ls.append(all)

            return ls
    getURLS(urls)

    for data in (ls):
            print( data)

2 Ответов

Рейтинг:
2

Patrice T

Цитата:
Добавление префикса в строку Python

Не знаю точно чего ты хочешь:
Строки Python[^]
Метод Python String join() [^]


ziko-ZR1

я хочу поместить разные струны в каждую позицию, которую я хочу

Patrice T

вам нужно подробно объяснить, чего вы хотите.
Воспользуйся Улучшить вопрос чтобы обновить ваш вопрос.

ziko-ZR1

Спасибо за вашу помощь

Рейтинг:
2

Tjohohan

Привет:)

Надеюсь, это вам поможет?

привет Йохан

"""
HI:)

Is it a program u want to alter a bit to fit your needs and the pay off is other than learning python?
If so, I wish i could help without asking you to waste effort with doing python but I dont know enough
python to fully understand the program. (No sarcasm or insult intended)

Heres an example if you want it?
"""

"""
Between three quote marks gets lifted out of the program and is means of communication between programmers
"""

#After hashtag is comments, dosent affect how the program behaves. Also programmer communication.

print("prefix."+"string"+".suffix")#Three "strings" added to each other with +
integer = 10 #integer is a variable name thats given an integer value of 10 at the beginning of this row. 10 gets assigned to integer variable name from right to left
string = str(integer)# str() is a function that converts to string
print(string)#Strings can be attatched with +
integer = int(string)#int() is a function that converts to integer
print(integer)#Can be calculated with

"""
Strings as this comment have no integer meaning for calculating
Sometimes i change back and forth between strings and integer using
str()
and
int()
To get the desired result
"""


Вот как выглядит запуск программы
ПЕРЕЗАПУСК: C:/Users/Hacke/AppData/Local/Programs/Python/Python37/CodeProject/Adding префикс к строке Python.py
префикса.строку.суффикс
10
10