Answers for "set in python 3"

1

how to print without space in python 3

>>> print("a","b","c")
a b c
>>> print("a","b","c",sep="")
abc
Posted by: Guest on April-28-2020
13

sets in python

The simplest way to create set is:
1. from list
code:
	s = [1,2,3]
	set = set(s)
	print(set)

2. s,add() method
code:
	set.add(1)
	set.add(2)
	set.remove(2)
	print(set)  // 1

3. Set conatins unique elements
Posted by: Guest on June-07-2020
8

python set

# A set contains unique elements of which the order is not important
s = set()
s.add(1)
s.add(2)
s.remove(1)
print(s)
# Can also be created from a list (or some other data structures)
num_list = [1,2,3]
set_from_list = set(num_list)
Posted by: Guest on August-21-2020
3

set in python

A_Set = {1, 2, "hi", "test"}

for i in A_Set: #Loops through the set. You only get the value not the index
  print(i) #Prints the current value
Posted by: Guest on December-04-2020
0

how to print 2 list in python as table

a = ['a', 'b', 'c']
b = ['1', '0', '0']
res = "n".join("{} {}".format(x, y) for x, y in zip(a, b))
Posted by: Guest on May-20-2020

Python Answers by Framework

Browse Popular Code Answers by Language