-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst.py
More file actions
166 lines (120 loc) · 2.25 KB
/
Copy pathfirst.py
File metadata and controls
166 lines (120 loc) · 2.25 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#first python code by session
# 5 pens 5books 7pencils calculate total price
#Python:
# - datatypes :
# int
# float
# str
# - Mathematical Operations
# - Variables
# - print()
# - type()
# Calculate Total At Shop
'''
numbers_of_pen = 10
price_of_pen = 5
print(price_of_pen * numbers_of_pen)
'''
#type
#type(price_of_pen)
#print(type) run in ide
# -Python : Interpreted Lang
# line by line execution **** in 25 line error stopped execution
#code without taking input
'''
price_of_pen = 10
price_of_chocs = 25.50
number_of_pen = 8
number_of_chocs = 5
total = price_of_pen * number_of_pen + price_of_chocs * number_of_chocs
print('Welcome To choco Shop')
print('Please Pay The Total Bill :',total,'$')
print('Visit us Again')
'''
#Dynamic Typing
'''
var = 10
#print(var)
var = 10.5 #python understand type float or int auto
print(var) #python store latest value
'''
'''
var_int = 10
var = var_int + 10
print(var)
'''
#string
'''
var_string = 'python' #string define with single
print(var_string)
#empty string also a string can define using double quote
diff betn '' and " "
'''
# i want = Python "Begin" course
'''
print('Python "beginer" course ')
print("Python beginer's course" )
'''
# look at Comment printing
temp = '''
hi
hello
hi
hello
sid
'''
#print(temp)
"""
You can use this
"""
#indexing
'''
var = "hello"
print(var[2])
print(var[0])
#negative index
print(var[-1])
'''
#error not empty print(var[])
#String Concatination
'''
var = 'siddhesh' + 'gaykar'
print(var)
'''
'''
var = 'python'
var[1:4] #works in idle
'''
#size factor
#reverse direction
# var[:: -1] #reverse string without any functions
#python => nohtyyp <= this is reverse string
#functions
#capital first character of string
'''
var='python'
var.capitalize()
print(var.capitalize())
'''
#each word first cap
'''
var = "python is great"
var.title()
print(var.title()) # print each character first leter cap
print(var.count('o')) #count the letter you pass in function
#filename = 'hello'
#filename.endswith('.py')
#filename.endswith("asdf.py")
'''
# check the Number is numeric or not
'''
phoneno = '834568521d55'
print(phoneno.isnumeric())
phoneno2 = '8345685215'
print(phoneno2.isnumeric())
'''
#capital all letters
'''
var = "hello"
print(var.upper())
'''