DavinE
Jan 13, 2022 - 20:39
Hello,
I Have a question about Python String formating.
This is my String:
csvFile__ProjectID = 83498246
rexelCSV = '%sr.csv' % (csvFile__ProjectID)
Is it possible to do like this:
file Exempel:
83498246r1.csv
83498246r10.csv
83498246r17.csv
csvFile__ProjectID = 83498246
rexelCSV = '%sr?.csv' % (csvFile__ProjectID)
The ? is for any Key
I hope you understand what I want 😂