-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path021.printInDetail.py
53 lines (46 loc) · 1 KB
/
021.printInDetail.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name = "Satyam"
age = 20
print(name,age,"Python",2020)
#print(*object,sep=' ',end='\n',file=sys.stdout,fllush=False) print function
print(name,age,"Python",2020,sep=", ")
#.join function
flowers = [
"Daffodil",
"Evening Primrose",
"Hydrangea",
"Iris",
"Lavender",
"Sunflower",
"Tiger Lily"
]
print(",".join(flowers))
#OR
seperator = " | "
output = seperator.join(flowers)
print(output)
#.split
pangram = """The quick brown
fox jump\tover
the lazy dog"""
words=pangram.split()
print(words)
numbers = "9,223,372,036,854,775,807"
print(numbers.split(","))
print()
generated_list = ['9',' ',
'2','2','3',' ',
'3','7','2',' ',
'0','3','6',' ',
'8','5','4',' ',
'7','7','5',' ',
'8','0','7']
values = "".join(generated_list)
print(values)
print()
values_list = values.split()
print(values_list)
print()
int_list = []
for val in values_list:
int_list.append(int(val))
print(int_list)