Skip to content

Commit a15226c

Browse files
Update README.md
1 parent cf6bbf5 commit a15226c

File tree

1 file changed

+44
-1
lines changed

1 file changed

+44
-1
lines changed

README.md

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,47 @@ So this is why you should learn Python first . These code are taken from [progra
5757
Answer - See if you'r computer/Pc/Mac is good enough so you can download Python directly on you're computer . You can download from here [Python](https://www.python.org/downloads/windows/), For Mac-Book [Python](https://www.python.org/downloads/macos/), For Other Platform's [Python](https://www.python.org/download/other/). These all releases are Provided by Python.org Official Site [Python](https://www.python.org/)
5858

5959
If you're not able to download Python on you're Window's don't be sad :cry: , Because my Laptop too doesn't support . But don't worry you can use [Anaconda-Distribution](https://www.anaconda.com/products/distribution) for using Python , This Anaconda Distribution is also Open-Source project , you can do changes in it . NOTE: Anaconda is a big file make sure you're computer/pc/laptop has enough memory/storage . Or else you can simpley use Google Collab [Google-Collab](https://colab.research.google.com/) This platform will help you to connect python and can help you to show how much data you're python is consuming here is the image as an example
60-
![Screenshot](https://user-images.githubusercontent.com/97610126/224493805-905c8efa-ad08-45f1-8c1c-6d0d018879c9.png) . The Yellow Mark are the example you can change the name of the file and connect to python from the top right corner .
60+
![Screenshot](https://user-images.githubusercontent.com/97610126/224493805-905c8efa-ad08-45f1-8c1c-6d0d018879c9.png) . The Yellow Mark are the example you can change the name of the file and connect to python from the top right corner .
61+
62+
63+
# Want To Contact Me , But Don't Know How To ?
64+
65+
Answer- You can Contact me through mail from here [G-Mail](https://mail.google.com/mail/?tab=rm&authuser=0&ogbl) , [Lichess]( https://lichess.org/) . Don't Worry it's Open-Source , You can create you're Own website after once you fork my reposirtory .
66+
67+
68+
# Now Some Coding Practice
69+
70+
Answer- So usually you have to start with basic's like
71+
72+
73+
a=10
74+
b=20
75+
76+
write the coding command - So the command is Print(a+b) = Output---> 30
77+
78+
Let's try some diffrent command's
79+
80+
Int ---> a=10
81+
print((a), type(a))
82+
83+
Output ---> 10<Class 'int'>
84+
85+
str ---> a='10'
86+
print((a), type(a))
87+
88+
Output ---> 10<Class 'str'>
89+
90+
float ---> a=10.0
91+
print((a), type(a))
92+
93+
Output ----> 10,0<Class 'float'>
94+
95+
Bool ---> a=True
96+
print((a), type(a))
97+
98+
Output ---> True<Class 'bool'>
99+
100+
101+
Hence for clear Image you can see this image ![Screenshot](https://user-images.githubusercontent.com/97610126/224502246-4f3c2065-9959-46e1-8db2-71bbaefcdb54.png)
102+
103+

0 commit comments

Comments
 (0)