Skip to content

Instantly share code, notes, and snippets.

View ItsCosmas's full-sized avatar
🔨
Building

Cozy! ItsCosmas

🔨
Building
View GitHub Profile
numbers = list(range(10))
print(numbers)
for x in range(6):
print(x)
else:
print("Finally finished!")
@ItsCosmas
ItsCosmas / for_loop_continue.py
Created May 9, 2019 08:16
For Loop Continue
# FOR LOOP CONTINUE
fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x == "banana":
continue
print(x)
# FOR LOOP BREAK
fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x == "banana":
break
print(x)
# FOR LOOP
words = ["hello", "world", "spam", "eggs"]
for word in words:
print(word)
words = ("spam", "eggs", "sausages")
print(words[0])
print(words.count("spam"))
print(words.index("eggs"))
# They are immutable
my_set = {"apple", "banana", "cherry", "strawberry", "grapes"}
# removes an element from the set
my_set.discard("banana")
print(my_set)
# Clear empties the set
my_set.clear()
ages = {"Cozy": 21, "Mark": 22, "Dan": 25}
primary = {
"red": [255, 0, 0],
"green": [0, 255, 0],
"blue": [0, 0, 255]
}
print(primary["red"])
print(ages["Cozy"])
# Only Immutable objects can be used as keys to dictionaries
# Dictionaries and Lists are mutable and cannot be used as keys in a dictionary
list = [12]
print("========= INSERT ============")
list.insert(0, 5)
print(list)
list.insert(1, 10)
print(list)
list.insert(2, 6)
print(list)
print("========= REMOVE ============")
@ItsCosmas
ItsCosmas / maps.py
Last active May 8, 2019 20:05
Maps
#MAPS
def addFive(x):
return x + 5
nums = [11,22,33,44,55]
result = list(map(addFive,nums))
print(result)
nums = [11,22,33,44,55]
result = list(map(lambda x:x+5,nums))
print(result)