FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonbasic/string_python.py at main · programmingwithmohammed/pythonbasic · GitHub
programmingwithmohammed
/
pythonbasic
Public
Notifications
You must be signed in to change notification settings
Fork
4
Star
3
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonbasic
/
string_python.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
34 lines (24 loc) · 571 Bytes
Breadcrumbs
pythonbasic
/
string_python.py
Copy path
File metadata and controls
34 lines (24 loc) · 571 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
# -*- coding: utf-8 -*-
"""
Created on Fri Jul 16 01:51:29 2021
@author: mjach
"""
name
=
'mohammed'
my_name
=
"chowdhury"
print
(
'My name is'
,
name
+
' '
+
my_name
)
#greeting = 'Hi it\'s Mohammed'
greeting
=
"Hi it's Mohammed"
print
(
greeting
)
long_message
=
""" aaaaaaaaaaaaa bbbbbbbbbbbbbb.
cccccccccccc
"""
print
(
long_message
)
my_name
=
'Mohammed'
greeting
=
f'Hi ,
{
my_name
}
'
print
(
greeting
)
#my_name = "Mohammed'
#my_name = 'mohammed'
age
=
27
my_age
=
'27'
#print(my_name + ' ' + str(my_age))
print
(
age
,
int
(
my_age
))
Back
|
FazBrowse Home
|
New Git URL