-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpython-setup-settings.py
More file actions
139 lines (103 loc) · 4.42 KB
/
python-setup-settings.py
File metadata and controls
139 lines (103 loc) · 4.42 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
# अगर डेवलपमेंट फील्ड मे आना चाहते हो और समझ नहीं आ रहा है की कैसे क्या करू को तो मुझे कान्टैक्ट कर सकते हो heykyakaru@gmail.com पर और मैं कोसिस करूंगा सही गाइड करने की। क्योंकी बिना सही गाइड के कई बार हम काफी परेसान हो जाते हैं की क्या करे और कैसे करे और इससी चक्कर मे काफी समय और पैसे की बर्बादी कर देते हैं। इसके बाद काफी मानसिक तनाव का भी सामना करना पड़ता हैं तो इसी परेसानी को कम करने का छोटा सा प्रयास हैं।
# साथ ही अपने ज्ञान को आपके साथ बांटने के लिए यूट्यूब चैनल शुरू किया हूँ और आपके साहियोग की जरूरत है इसे सही और जरूरत मंद स्टूडेंट्स और जो खुद से पढ़ पढ़ना चाहते हैं उन तक पहुचाने के लिए तो इस चैनल को उनके साथ जरूर शेयर करो जो वाकई मे पढ़ना चाहते है और खुद से कोसिस कर रहे हैं।
# https://www.youtube.com/channel/UCphs2JfmIClR62wbyf76HDg
# HEY KYA KARU यूट्यूब चैनल के जरूरी लिंक
# 1. Python Basic and Advance ट्यूटोरियल प्लेलिस्ट https://www.youtube.com/playlist?list=PLK6wiPavf7QikS9PMYrGZXz1HlE1KZLD3
# 2. PHP Projects प्लेलिस्ट https://www.youtube.com/playlist?list=PLK6wiPavf7QiEj6IPc3lkjz1wR4w9RM6B
# 3. GitHubट्यूटोरियल प्लेलिस्ट https://www.youtube.com/watch?v=LUyVs2MTlTM&list=PLK6wiPavf7Qjydpc5v-hdIoqCx2V19pHP
# 4. Python Project https://www.youtube.com/watch?v=3lrbbB38zpU&list=PLK6wiPavf7Qj-NLJhbkxw9QfonweHafcN
# 5. Tips and Trick for Development: https://www.youtube.com/watch?v=vPL6ODrfcwI&list=PLK6wiPavf7QiVLYXrC2TW_fdcZp57MgMB
'''
Python Code run karne ke liye setup:
Python exe file: https://www.python.org/ftp/python/3.8.3/python-3.8.3.exe
Vs Code file: https://code.visualstudio.com/download#
About Python:
Assembly level lang
Low levevl lang
High level lang: c, c++, python
Python:
variable
datatype
......
{} ;
asdfa
sadfas
asdfa
Python: Basic and Adv.
Web Development
App => Android / Ios
sofware dev.
math.
system scripting
DataSci. : Amazon/Google
Machine learing
Numpy: Matrix
AI
Image processing
Python: Libararys
Random
Regex
Database
Math: sin()
Queston:
What is datascience?
What is bigdata?
What is hadoop?
What is regex in python?
'''
print('Hello Python')
# VS Code
'''
1. Ptyhon + VS Code: is ko connect karne ke liye python extensiton install karna padega.
2. python file create karna. save with .py extenstion
3. .py file save karne ke baad edtior me python appear hoga.
4. python code ko run karne ke liye editor me right top corne par gren play ka sign hai use click karna hai.
'''
# Python Indentation
'''
if(condtion){
body of if
}
'''
print('Hello Python again')
print('Hello Python again')
if 4 > 3:
print('Ha 4 jo hai ye 3 se bada hain')
# Python Comment
# ye single line comment hai
'''
3 single ya double quote ke sath multi line comment ka use kiya jata hai
PHP Comment
// Single line
/* */ Multi Line
HTML
<!-- --> Singl aur multiline ke liye
CSS / JavaScript
// Single line
'''
data = """
Ye bhi multi line comment hain
Kuch user details
Name Id
A 7887
B 89879
"""
print(data)
# Python Variables
'''
1. variable case senstive hain
2. variable kabhi bhi digit se start nahi hota hai
3. variable me kewal under scroe use hota hai as special charater
4. digt ka use varaible name ke bich me kya last me kar sakte hain
'''
_a = 5
A_ = 10
a00 = 15
print('Varaibel values _a, A_, a00: ',_a)
'''
Queston:
What is datascience?
What is bigdata?
What is hadoop?
What is regex in python?
'''