• Sep 20, 2025 •cntt.dsc-f4b6
1 like • 2 views
print(123)
• Nov 19, 2022 •CodeCatch
0 likes • 2 views
from collections import defaultdict def collect_dictionary(obj): inv_obj = defaultdict(list) for key, value in obj.items(): inv_obj[value].append(key) return dict(inv_obj) ages = { 'Peter': 10, 'Isabel': 10, 'Anna': 9, } collect_dictionary(ages) # { 10: ['Peter', 'Isabel'], 9: ['Anna'] }
• Apr 21, 2023 •sebastianagauyao2002-61a8
0 likes • 4 views
print("hellur")
• Jul 2, 2025 •AustinLeath
0 likes • 1 view
import calendar from datetime import datetime # Get the UTC timestamp a = calendar.timegm(datetime.utcnow().utctimetuple()) print(a)
• Feb 23, 2025 •hasnaoui1
0 likes • 9 views
print("hello world")
• Jun 16, 2024 •lagiath
print('hello, world')