-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path1.welcome.py
More file actions
52 lines (40 loc) · 903 Bytes
/
1.welcome.py
File metadata and controls
52 lines (40 loc) · 903 Bytes
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
'''
Python ke basic points:
1. Hame jab bhi ouput dekhna hai to hame print() method use karn ahi.
2. Jab bhi hame usser se input lena hai to hame input() method use karna hai.
3. Python ke andar hum intentation follow karte hain. Matlab ki faltu me ham koi bhi space nahi de sakte hain. Aysa karne ke hame intentation ka error milega.
'''
# input process output
# print() - ye outut method
print('\nHello Python')
# input method
name = input('Enter your name: ')
print('\n', name)
# comment in python
# ye sinle line comment ka tarika hai.
'''
Ye ek
multi
line
comment hai
'''
"""
Ye ek bhi
multi
line
comment hai. isme double quoute ka use kiya gaya hai.
"""
'''
Web Development
Wordpress / Wix
Data Sci.
scipy / matplotlib / opencv
Data Anl.
Image Processing: CDC
Software
() {} [] , . ;
'''
# show output using print() method
# name = 'Python'
# print('Hello Python')
print('Hello')