-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path0_formatting.py
75 lines (54 loc) · 2.95 KB
/
0_formatting.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
###############################################
# #
# Created by Youssef Sully #
# Beginner python #
# Formatting 1 #
# #
###############################################
# Formatting
dict_info = {'first_name': 'Youssef', 'last_name': 'Sully', 'age': 33}
# Bad implementation of printing multiple output
print("\n{} {} {}\n".format("-" * 9, "Bad implementation of printing multiple output", "-" * 9))
output = 'My first name is ' + dict_info['first_name'] + " " + dict_info['last_name'] + \
' and I am ' + str(dict_info['age']) + ' years old. '
print(output)
# Use of formatting
print("\n{} {} {}\n".format("-" * 9, "Use of formatting", "-" * 9))
output = 'My name is {} {} and I am {} years old.'.format(dict_info['first_name'],
dict_info['last_name'],
dict_info['age'])
print(output)
# Order formatting 1
print("\n{} {} {}\n".format("-" * 9, "Order formatting 1", "-" * 9))
output = 'My name is {f_name} {l_name} and I am {age} years old.'.format(f_name='Youssef',
l_name='Sully',
age='30')
print(output)
# Order formatting 2
print("\n{} {} {}\n".format("-" * 9, "Order formatting 2", "-" * 9))
output = 'My name is {0} {2} and I am {1} years old.'.format(dict_info['first_name'],
dict_info['age'],
dict_info['last_name'])
print(output)
# Referencing a dictionary
print("\n{} {} {}\n".format("-" * 9, "Referencing a dictionary", "-" * 9))
# the use of **dict_info is calling the the dictionary and inside the curly brackets we specify the
# key.
output = 'My name is {first_name} {last_name} and I am {age} years old.'.format(**dict_info)
print(output)
# Direct operation inside the format
print("\n{} {} {}\n".format("-" * 9, "Direct operation inside the format", "-" * 9))
output = '25 / 5 is equal to {} '.format(25 / 5)
print(output)
# Different variation of int output
print("\n{} {} {}\n".format("-" * 9, "Different variation of int output", "-" * 9))
# using the :03 inside the curly brackets to display three digits instead of 1
integer_number = 5
output = 'The value of the integer_number is {} but after using \n:03 inside the curly ' \
'brackets it displayed as {:03}'.format(integer_number, integer_number)
print(output, "\n")
# using the :.2f inside the curly brackets to display two digits after the comma!
output = '1 / 3 is equal to {} and in order to display two ' \
'\ndigits after the comma we use :.2f inside the curly ' \
'brackets {:.2f}'.format(1 / 3, 1 / 3)
print(output)