--> Python Syntax- Alpha Codist | Alpha Codist

Search This Blog

Python Syntax- Alpha Codist

programming, java, software, PHP, C programming, programming languages, visual, Pascal, Perl, XML program, UNIX, cyber program, C++, HTML, CSS, Python syntax, software, what is computer, programming, programming languages, computer programming, what is coding, what is programming, contract programming, need a programmer, cyber program, tmbmnadim, Alpha Codist, python

programming, java, software, PHP, C programming, programming languages, visual, Pascal, Perl, XML program, UNIX, cyber program, C++, HTML, CSS, Python syntax, software, what is computer, programming, programming languages, computer programming, what is coding, what is programming, contract programming, need a programmer, cyber program, tmbmnadim, Alpha Codist, python

Python Syntax



Name of syntax
What it does
Example
Execute
Prints strings
print(“Hello World!!!”)
Hello World!!!
Prints Integers
print(50*90) or
print(4500)
print(‘*’ * 10)
4500
**********
Prints Boolean Etc.
print(50=50)
True
Prints variables
a = 50
print(a)
50
Takes input from the user
name = input(“Name: ”)
print(‘Hi’ + name)
Name: Alpha Codist
Hi Alpha Codist
Transforms numeric strings to integers
(1) a = “40”
print(a * 3)
(2) b= ‘20’
a =int(b)
print(a * 3)
(1) 404040
(2) 60
Converts to strings
(1) a = 40
print(a * 3)
(2) b= 20
a =str(b)
print(a * 3)
(1) 120
(2) 202020
For importing modules
Import math
(This imports the math module)
For comparing
a = 10
if (a == 10):
print('a is equal to ten')
else:
print('a is not equal to ten')
a is equal to ten
b = 9
if (b == 10):
print('b is equal to ten')
else:
print('b is not equal to ten')
b is not equal to ten
Creating loop
c = input("c: ")
c = int(c)
while (c < 10):
print("c is less than equal to ten")
c += 1
else:
print("c is too large")
c: 5
c is less than equal to ten
c is less than equal to ten
c is less than equal to ten
c is less than equal to ten
c is less than equal to ten
c is too large


COMMENTS

Name

beeCrowd,11,C,10,Computer,9,Downloads,3,HTML,1,My Creation,2,Python,24,Python-Soft,1,Shooting,2,
ltr
item
Alpha Codist: Python Syntax- Alpha Codist
Python Syntax- Alpha Codist
programming, java, software, PHP, C programming, programming languages, visual, Pascal, Perl, XML program, UNIX, cyber program, C++, HTML, CSS, Python syntax, software, what is computer, programming, programming languages, computer programming, what is coding, what is programming, contract programming, need a programmer, cyber program, tmbmnadim, Alpha Codist, python
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8Yhg_Zd8Golgsq36lT-sM7SZklouX7ybWNkSlnpZuQ0J1z7WDAtrLMGv_nvIaUmCgJTEKFpkGA7N8road0EnrDUlpNwfQbst25HpbiILZs2zVvIaCgBTVSs-O-Y9cwc9nHbUMdqvOQZug/s640/logo-01.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8Yhg_Zd8Golgsq36lT-sM7SZklouX7ybWNkSlnpZuQ0J1z7WDAtrLMGv_nvIaUmCgJTEKFpkGA7N8road0EnrDUlpNwfQbst25HpbiILZs2zVvIaCgBTVSs-O-Y9cwc9nHbUMdqvOQZug/s72-c/logo-01.png
Alpha Codist
https://alphacodist.blogspot.com/2020/04/python-syntax-alpha-codist.html
https://alphacodist.blogspot.com/
https://alphacodist.blogspot.com/
https://alphacodist.blogspot.com/2020/04/python-syntax-alpha-codist.html
true
7547834254111195316
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content