Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How do you manage script?
#1
sorry for my bad English,
I have a lot of "subscripts" like this:

#trim whitespace start and end
txt = "     Hello!  "
strippedtxt = txt.strip()
print(strippedtxt)
#Make all text Uppercase
txt = "Hello my friends"
x = txt.upper()
print(x)
#Make all text Lowercase
txt = "Hello my friends"
x = txt.lower()
print(x)
#Make all text like proper in excel
txt = "Hello my friends"
x = txt.title()
print(x)
if the scripts are under 10, it quite easy to find,
but if you have over 100, it is quite hard to manage,
of course, you can google it, but sometimes google-ing requires times like over 20+ minutes to extract that specific code,
sadly, you have that "specific code" working perfectly, but you can't find it where put it,

so, any tips, software, or idea to handle this?

thank you have a nice day
Reply


Messages In This Thread
How do you manage script? - by kucingkembar - Oct-13-2022, 04:35 AM
RE: How do you manage script? - by perfringo - Oct-13-2022, 06:56 AM
RE: How do you manage script? - by Larz60+ - Oct-13-2022, 06:57 AM
RE: How do you manage script? - by kucingkembar - Oct-13-2022, 04:05 PM
RE: How do you manage script? - by rob101 - Oct-13-2022, 08:44 AM
RE: How do you manage script? - by perfringo - Oct-13-2022, 09:01 AM
RE: How do you manage script? - by snippsat - Oct-13-2022, 10:14 AM
RE: How do you manage script? - by kucingkembar - Oct-13-2022, 04:01 PM
RE: How do you manage script? - by kucingkembar - Oct-13-2022, 04:07 PM
RE: How do you manage script? - by kucingkembar - Oct-13-2022, 04:11 PM
RE: How do you manage script? - by kucingkembar - Oct-13-2022, 06:34 PM
RE: How do you manage script? - by rob101 - Oct-13-2022, 07:04 PM
RE: How do you manage script? - by perfringo - Oct-14-2022, 06:16 AM
RE: How do you manage script? - by deanhystad - Oct-14-2022, 08:57 PM
RE: How do you manage script? - by Gribouillis - Oct-15-2022, 06:32 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  python manage variables across project level mg24 1 947 Nov-12-2022, 05:01 AM
Last Post: deanhystad
  Python, how to manage multiple data in list or dictionary with calculations and FIFO Mikeardy 8 2,696 Dec-31-2021, 07:47 AM
Last Post: Mikeardy
  how to manage crypto trading flooding data from exchange servers Mikeardy 0 1,257 Dec-26-2021, 08:31 PM
Last Post: Mikeardy
  API Gateway to manage multiple API's get put data robsuttonjr 2 2,570 Mar-09-2021, 04:09 PM
Last Post: robsuttonjr
  Manage user names in TRAC susja 3 6,147 Dec-06-2020, 09:34 PM
Last Post: susja
  How to manage multiple datasets in Python ThePhantom 2 1,950 May-06-2020, 12:17 AM
Last Post: ThePhantom
  how to manage an input() rodrigoH 1 1,664 Mar-16-2020, 12:24 AM
Last Post: jefsummers
  Easier way to manage dependencies? Tylersuard 2 2,394 Jan-01-2020, 09:19 PM
Last Post: Tylersuard

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020