Skip to content

Commit 76b4914

Browse files
in the type checks the "set" comment said "tuple" but its actually a set not a tuple.
1 parent 80e4ac4 commit 76b4914

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

01_Day_Introduction/helloworld.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
print(type('Asabeneh')) # String
2323
print(type([1, 2, 3])) # List
2424
print(type({'name': 'Asabeneh'})) # Dictionary
25-
print(type({9.8, 3.14, 2.7})) # Tuple
25+
print(type({9.8, 3.14, 2.7})) # set

0 commit comments

Comments
 (0)