Software programing
前往频道在 Telegram
This is a channel which gives tutorial on different programming languages, android tips and tricks best apps etc...
显示更多1 471
订阅者
无数据24 小时
无数据7 天
无数据30 天
帖子存档
1 471
We started to give pdf files on the topic that u want.we make the pdf by ur command.and it is with a simple payment through mobile card.so if u want to talk to us.......
@Fikire2 And @Alphadmin12
1 471
blockchain with py. nice, many ideas in it that can be expanded into separate projects
https://medium.com/crypto-currently/lets-build-the-tiniest-blockchain-e70965a248b
1 471
#4 python: operators
⚜ addition
doing 1+2 gets you 3
⚜ substraction
doing 6-1 gets you 5
⚜ multiplication
doing 1*5*2 gets you 10
(thanks Antonio Galán for correction)
⚜ division
doing 5/2 gets you 2.5
⚜ floor division
doing 5//2 gets you 2
floor rounds to previous whole number
⚜ power/exponentiation
3**2 gets you 9
⚜ remainder operator
10%6 gives you 4
you get a remainder of 4 when 10 is divided by 6
1 471
#3 python: more data types
🍵 tuples
same as lists but with ( )
(1,2,3)
lists are mutable (can be changed) but tuples are not
🍵 complex numbers
yes, python can represent complex numbers natively
2 + 3j
🍵 booleans
booleans mean true or false
x = True
x = False
🍵 dictionaries
dictionaries are mappings
x = {
"a":1,
"b":2,
}
x["a"] will give you 1
they can contain any type of data such as lists
x = {
"a":[0,1,5],
"b":2,
}
or other dictionaries
x = {
"a":1,
"b":{
1:[0,8,9],
2:"a"
}
}
1 471
#2 python : data types
computers understand only electric flow, a higher representation is numbers but since those are difficult to deal with, many types of data were created so that we can express ourselves with ease
we can assign variables to those data types
⚡️integers
integers are normal numbers like 1 2 3 4
⚡️floats
floats are like decimals. 1.0, 2.6, 3.8, 4.888
⚡️strings
strings are a way to deal with text
"i am here" is a string
⚡️lists (arrays in other languages)
x = [1, 2, 5]
[1,2,3] this is a list
it can contain different data types
[1, 1.0, "2"]
also more lists
[1, [6,8,9], 4]
1 471
*#1 python : variables*
variables are just names associated to values
x = 3
just like maths
y = 5
the computer keeps a record
name | value
---------------------
x | 3
y | 5
|
so that if you do
z = x + y
it will look up the value for x, look up the value for y the assign it to z
z will equal 8
name | value
---------------------
x | 3
y | 5
z | 8
|
1 471
The Python compiler is a very refined APP that provides direct functionality for Python beginners and can be used to verify small programs. The software supports directly from the file manager to open the code file, user-friendly viewing
1 471
👽 SoloLearn PRO: an ad-free experience with advanced tools
Set custom daily learning goals and learn faster.
1 471
Do u know that sololearn gives coding space(play ground).so if want to execute or try python just down load sololearn apk or go their site and have a fun.
1 471
....cont #python
Hello world! On python
Steps...
1. Open your IDE
2. Write this
Print ("hello world")
3. Save it with .py extension
4. Run in any python console
.....
...perfect! This is the first thing that today's billionaires like #Elon musk, mark zeckrberg know for the first time
@software_programming1
1 471
....cont #python
Steps to get start with python
1. Download python on your device
2. Add your python into path
3. Open proper IDE (but python come with special feature known as IDLE ...)
4. ....code it
@software_programming1
1 471
#Next....
Intro on programming language
#python
Python is the most growing computer language in world
- first written by Dutchman van russom in mid decades
- website 👉www.python.com
Download it and get started.....
@software_programming1
1 471
Your First Program
Let's start off by creating a short program that displays "Hello world!".
In Python, we use the print statement to output text:
1 471
Welcome to Python!
Python is a high-level programming language, with applications in numerous areas, including web programming, scripting, scientific computing, and artificial intelligence.
It is very popular and used by organizations such as Google, NASA, the CIA, and Disney.
Python is processed at runtime by the interpreter. There is no need to compile your program before executing it.
Welcome to Python!
The three major versions of Python are 1.x, 2.x and 3.x. These are subdivided into minor versions, such as 2.7 and 3.3.
Code written for Python 3.x is guaranteed to work in all future versions.
Both Python Version 2.x and 3.x are used currently.
This course covers Python 3.x, but it isn't hard to change from one version to another.
Python has several different implementations, written in various languages.
The version used in this course, CPython, is the most popular by far.
1 471
We sayed that we are going to start python and we are going to👇👇👇👇👇👇👇👇👇👇👇👇👇👇
1 471
🔰Programming, Web Development, Networking and More🔰
1. www.codecademy.com
2. www.lynda.com
3. www.udemy.com
4. www.udacity.com
5. www.coursera.org
6. www.w3schools.com
7. www.thenewboston.org
8. www.programmr.com
9. www.codeavengers.com
10. www.codeschool.com
11. www.learnstreet.com
12. www.teamtreehouse.com
13. www.sqlzoo.net
14. www.codehs.com
15. www.teamtreehouse.com
16. www.html5rocks.com
17. www.codepen.io
18. www.sitepoint.com
19. www.tutorialspoint.com
20. www.javatpoint.com
21. www.cplusplus.com
22. www.learncpp.com
23. www.tutorialspoint.com
24. www.cprogramming.com
25. www.stackoverflow.com
26. www.learncodethehardway.org
27. www.bloc.io
28. www.howtocode.io
29. www.edx.org
30. www.instructables.com
31. www.developer.apple.com
32. www.developer.android.com
33. www.developers.google.com
34. www.developer.mozilla.org
35. www.msdn.microsoft.com
36. www.decompera.com
37. www.www.developphp.com
38. www.quackit.com
39. www.htmlite.com
40. www.siteduzero.com
41. www.dreamincode.net
42. www.phpbuddy.com
43. www.php.net
44. www.microsoftvirtualacademy.com
45. www.professormesser.com
