Anonymní profil Lomby – Programujte.com
 x   TIP: Přetáhni ikonu na hlavní panel pro připnutí webu

Anonymní profil Lomby – Programujte.comAnonymní profil Lomby – Programujte.com

 

Příspěvky odeslané z IP adresy 91.231.30.–

Lomby
Python › Vložení jedné funkce do kódu
24. 5. 2022   #390183

#7 peter
Děkuji moc :)

Lomby
Python › Vložení jedné funkce do kódu
24. 5. 2022   #390180

#4 peter

# A Python program to print all
# combinations of given length
from itertools import combinations

# Get all combinations of [1, 2, 3, 4, 5, 6, 7, 8]

# and length 4
comb = combinations([1, 2, 3, 4, 5, 6, 7, 8], 4)

# Print the obtained combinations
for i in list(comb):
    if sum(combinations) == 15:
        print (i)

        
Traceback (most recent call last):
  File "<pyshell#7>", line 3, in <module>
    if sum(combinations) == 15:
TypeError: 'type' object is not iterable

Je to chyba v mezeře? Zkoušel jsem všemožné a nic.

Lomby
Python › Vložení jedné funkce do kódu
23. 5. 2022   #390178

#2 gna
Nějak se mi na to nedaří přijít.

Mohu poprosit o celou podobu kódu i s vloženou podmínkou?

Lomby
Python › Vložení jedné funkce do kódu
23. 5. 2022   #390176

Hezký den,

mám tento kód:


# A Python program to print all
# combinations of given length
from itertools import combinations
 
# Get all combinations of [1, 2, 3, 4, 5, 6, 7, 8]
# and length 4
comb = combinations([1, 2, 3, 4, 5, 6, 7, 8], 4)
 
# Print the obtained combinations
for i in list(comb):
    print (i)
 

Potřeboval bych tam vložit funkci, respektive podmínku, která zredukuje počet kombinací. A to tak, aby mi to vypsalo pouze kombinace, kde je součet čtyřčíslí roven 15. 

Děkuji za pomoc.

 

 

Hostujeme u Českého hostingu       ISSN 1801-1586       ⇡ Nahoru Webtea.cz logo © 20032024 Programujte.com
Zasadilo a pěstuje Webtea.cz, šéfredaktor Lukáš Churý