Compare commits

...

6 Commits

Author SHA1 Message Date
kaushikaryan04
590fbd0889 Merge 0ad1457ee7 into 10872e02d1 2024-06-20 20:46:16 +00:00
Julien Le Coupanec
10872e02d1 Merge pull request #385 from WPRobson/master
add docker init command to docker cheatsheet
2024-06-07 23:35:19 +02:00
Julien Le Coupanec
365b4f72b7 Merge pull request #390 from MagedMohamedTurk/patch-1
Update C.txt
2024-06-07 23:34:57 +02:00
Maged Turkoman
0f74ebe37b Update C.txt 2024-06-01 09:07:47 +03:00
Will Robson
bf4c0379f2 add docker init command to docker cheatsheet 2024-05-12 20:01:26 +01:00
kaushikaryan04
0ad1457ee7 Function Arguments 2021-08-21 23:30:15 +05:30
3 changed files with 21 additions and 1 deletions

View File

@@ -149,6 +149,7 @@ Operators
^= bitwise exclusive or and store
|= bitwise or and store
, separator as in ( y=x,z=++x )
; statement terminator.
Operator precedence

View File

@@ -380,3 +380,22 @@ function_name()
* We need not to specify the return type of the function.
* Functions by default return `None`
* We can return any datatype.
### Function arguments
- You can pass arguments in a function while calling to use inside it.
- Like if you want to add two numbers.
```
def sum(a , b):
return a + b
```
- In this a and b are passed and their sum is returned
-You can also assign the return value of this function to a variable
```
sum_of_two_numbers = sum(5,8) #calling the function and value assigned
print(sum_of_two_numbers)
```
-This will print sum of 5 and 8

View File

@@ -2,7 +2,7 @@
# DOCKER
##############################################################################
docker init # Creates Docker-related starter files
docker build -t friendlyname . # Create image using this directory's Dockerfile
docker run -p 4000:80 friendlyname # Run "friendlyname" mapping port 4000 to 80
docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode