“Wie man Tupel in Python in INT umwandelt” Code-Antworten

Wie man Tupel in Python in INT umwandelt

# initialize tuple 
test_tuple = (1, 4, 5) 
  
# printing original tuple  
print("The original tuple : " + str(test_tuple)) 
  
# Convert Tuple to integer 
# Using int() + join() + map() 
res = int(''.join(map(str, test_tuple))) 
  
# printing result 
print("Tuple to integer conversion : " + str(res)) 
Delightful Dragonfly

Tupel in int konvertieren

# Using reduce() + lambda

import functools
  
my_tuple = (1, 4, 5)
  
res = functools.reduce(lambda sub, ele: sub * 10 + ele, my_tuple)
Humayan

Ähnliche Antworten wie “Wie man Tupel in Python in INT umwandelt”

Fragen ähnlich wie “Wie man Tupel in Python in INT umwandelt”

Weitere verwandte Antworten zu “Wie man Tupel in Python in INT umwandelt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen