Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
PySec101 Fall 2013 - J1E1
Search
Mohammad reza Kamalifard
November 10, 2013
Education
0
81
PySec101 Fall 2013 - J1E1
Python For Ethical hackers 1 - Mohammad reza Kamalifard
Mohammad reza Kamalifard
November 10, 2013
Tweet
Share
More Decks by Mohammad reza Kamalifard
See All by Mohammad reza Kamalifard
جلسه اول پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲
itmard
1
220
جلسه دوم پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲
itmard
0
120
جلسه سوم پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲
itmard
0
79
جلسه چهارم پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲
itmard
1
86
جلسه پنجم پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲- ارائه ۱
itmard
0
63
جلسه پنجم پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲- ارائه ۲
itmard
0
110
جلسه ششم پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲- ارائه ۱
itmard
0
79
جلسه ششم پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲- ارائه ۲
itmard
1
95
PySec101 Fall 2013 - J2E1
itmard
0
56
Other Decks in Education
See All in Education
HCI and Interaction Design - Lecture 2 - Human-Computer Interaction (1023841ANR)
signer
PRO
0
1.3k
万博非公式マップとFOSS4G
barsaka2
0
1.3k
20250807_がんばらないコミュニティ運営
ponponmikankan
0
180
アントレプレナーシップ教育 ~ 自分で自分の幸せを決めるために ~
yoshizaki
0
210
SISTEMA DE MEMORIA Y SU IMPACTO EN LAS DECISIONES.
jvpcubias
0
180
Padlet opetuksessa
matleenalaakso
4
14k
Introduction - Lecture 1 - Human-Computer Interaction (1023841ANR)
signer
PRO
0
2.5k
フィードバックの伝え方、受け身のココロ / The Way of Feedback: Words and the Receiving Heart
spring_aki
1
170
20250910_エンジニアの成長は自覚するところから_サポーターズ勉強会
ippei0923
0
290
Software
irocho
0
470
Портфолио - Шынар Ауелбекова
shynar
0
120
大学院進学について(2025年度版)
imash
0
130
Featured
See All Featured
Why Our Code Smells
bkeepers
PRO
339
57k
Optimizing for Happiness
mojombo
379
70k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.5k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
9
860
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
9
970
The Language of Interfaces
destraynor
162
25k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
900
Documentation Writing (for coders)
carmenintech
75
5k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
GraphQLとの向き合い方2022年版
quramy
49
14k
Transcript
None
None
• • • • • •
• • • • • • • • • •
•
• • • • •
• • • •
• • • •
• • • • • • •
• • •
$ python Python 2.7.3 (default, Apr 10 2013, 05:46:21) [GCC
4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>>
>>> print 'Hello, World!' Hello, World! >>> >>> print 'Welcome
to PYSEC101 Course' Welcome to PYSEC101 Course >>> >>> 'Hello World' 'Hello World' >>> 3 3 >>>
>>> 12 / 7 1 >>> >>> 12.0 / 7
1.7142857142857142 >>> >>> float(12) / 7 1.7142857142857142 >>>
>>> 3 + 2 * 4 11 >>> ( 3
+ 2 ) * 4 20 >>> >>> _ 20 >>>
• • •
$ vim Hello.py print 'Hello, World!' ~ ~ ~ ~
~ ~ ~ $ python Hello.py Hello, World!
None
None