Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Convert string to int
#9
tab = '5;6;9;7'.split(';')
tab = list(map(int, tab))

somme = 0
total = 0

for number in tab:
    total += number
print(f'Sum of tab list is: {total}')

for number in tab:
    print((somme + number)/total)
Output:
Sum of tab list is: 27 0.18518518518518517 0.2222222222222222 0.3333333333333333 0.25925925925925924
Frankduc likes this post
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags


Reply


Messages In This Thread
Convert string to int - by Frankduc - Feb-13-2022, 03:47 PM
RE: Convert string to int - by menator01 - Feb-13-2022, 04:01 PM
RE: Convert string to int - by Frankduc - Feb-13-2022, 04:04 PM
RE: Convert string to int - by menator01 - Feb-13-2022, 04:13 PM
RE: Convert string to int - by Yoriz - Feb-13-2022, 04:20 PM
RE: Convert string to int - by Frankduc - Feb-13-2022, 04:33 PM
RE: Convert string to int - by Yoriz - Feb-13-2022, 04:42 PM
RE: Convert string to int - by Frankduc - Feb-13-2022, 04:49 PM
RE: Convert string to int - by menator01 - Feb-13-2022, 04:50 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  convert string to float in list jacklee26 6 2,006 Feb-13-2023, 01:14 AM
Last Post: jacklee26
  how to convert tuple value into string mg24 2 2,435 Oct-06-2022, 08:13 AM
Last Post: DeaD_EyE
  Convert string to float problem vasik006 8 3,502 Jun-03-2022, 06:41 PM
Last Post: deanhystad
  Convert a string to a function mikepy 8 2,617 May-13-2022, 07:28 PM
Last Post: mikepy
Question How to convert string to variable? chatguy 5 2,560 Apr-12-2022, 08:31 PM
Last Post: buran
  Convert string to path using Python 2.7 tester_V 10 6,591 Nov-20-2021, 02:20 PM
Last Post: snippsat
  Convert each element of a list to a string for processing tester_V 6 5,451 Jun-16-2021, 02:11 AM
Last Post: tester_V
Question convert unlabeled list of tuples to json (string) masterAndreas 4 7,546 Apr-27-2021, 10:35 AM
Last Post: masterAndreas
  Convert String of an int array to a Numpy array of ints mdsousa 5 5,773 Apr-08-2021, 08:00 PM
Last Post: mdsousa
  Convert string to JSON using a for loop PG_Breizh 3 3,015 Jan-08-2021, 06:10 PM
Last Post: PG_Breizh

Forum Jump:

User Panel Messages

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